Skip to content

Commit

Permalink
Add info log prefix pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
nicktindall committed Oct 24, 2024
1 parent 93bfe04 commit d9ce4b5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ protected SecureSettings credentials() {
MockSecureSettings secureSettings = new MockSecureSettings();
secureSettings.setString("azure.client.default.account", System.getProperty("test.azure.account"));
if (hasSasToken) {
logger.info("Using SAS token authentication");
logger.info("--> Using SAS token authentication");
secureSettings.setString("azure.client.default.sas_token", System.getProperty("test.azure.sas_token"));
} else {
logger.info("Using key authentication");
logger.info("--> Using key authentication");
secureSettings.setString("azure.client.default.key", System.getProperty("test.azure.key"));
}
return secureSettings;
Expand Down

0 comments on commit d9ce4b5

Please sign in to comment.