Skip to content

Commit 6e35a73

Browse files
committed
Updating error message
1 parent d027e2e commit 6e35a73

File tree

1 file changed

+1
-1
lines changed
  • disk-buffering/src/main/java/io/opentelemetry/contrib/disk/buffering/internal/storage

1 file changed

+1
-1
lines changed

disk-buffering/src/main/java/io/opentelemetry/contrib/disk/buffering/internal/storage/FolderManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public static FolderManager create(
3333
throw new IllegalArgumentException("destinationDir must be a directory");
3434
} else if (!destinationDir.exists()) {
3535
if (!destinationDir.mkdirs()) {
36-
throw new IllegalStateException("Could not created dir " + destinationDir);
36+
throw new IllegalStateException("Could not create dir: " + destinationDir);
3737
}
3838
}
3939
return new FolderManager(destinationDir, configuration, clock);

0 commit comments

Comments
 (0)