Skip to content

Commit 274b6df

Browse files
committed
Format code
1 parent b4ed940 commit 274b6df

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

sentry/src/main/java/io/sentry/config/FilesystemPropertiesLoader.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,14 @@ public FilesystemPropertiesLoader(@NotNull String filePath, @NotNull ILogger log
3333
}
3434
} else if (!f.isFile()) {
3535
logger.log(
36-
SentryLevel.ERROR, "Failed to load Sentry configuration since it is not a file or does not exist: %s", filePath);
36+
SentryLevel.ERROR,
37+
"Failed to load Sentry configuration since it is not a file or does not exist: %s",
38+
filePath);
3739
} else if (!f.canRead()) {
3840
logger.log(
39-
SentryLevel.ERROR, "Failed to load Sentry configuration since it is not readable: %s", filePath);
41+
SentryLevel.ERROR,
42+
"Failed to load Sentry configuration since it is not readable: %s",
43+
filePath);
4044
}
4145
} catch (IOException e) {
4246
logger.log(

0 commit comments

Comments
 (0)