Skip to content

Commit

Permalink
fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Feb 26, 2013
1 parent d88c07c commit 1c798a3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -80,7 +80,7 @@ public static BasicDataSource create(TypedProperties properties,
String[] keyValue = property.split("=");
if (keyValue != null && keyValue.length > 1) {
LoggerFactory.getLogger(BasicDataSourceFactory.class).info(
"Setting database connection property %s=%s", keyValue[0], keyValue[1]);
"Setting database connection property {}={}", keyValue[0], keyValue[1]);
dataSource.addConnectionProperty(keyValue[0], keyValue[1]);
}
}
Expand Down

0 comments on commit 1c798a3

Please sign in to comment.