Skip to content

Commit 7a25740

Browse files
committed
SNOW-2102874 Fix easy logging error message
1 parent 697a2e2 commit 7a25740

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/net/snowflake/client/config/SFClientConfigParser.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,7 @@ public static SFClientConfig loadSFClientConfig(String configFilePath) throws IO
9090

9191
return clientConfig;
9292
} catch (IOException e) {
93-
String customErrorMessage =
94-
"Error while reading config file at location: " + derivedConfigFilePath;
93+
String customErrorMessage = "Error while reading config file: " + derivedConfigFilePath;
9594
throw new IOException(customErrorMessage, e);
9695
}
9796
}

0 commit comments

Comments
 (0)