mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
ZEPPELIN-1935 fix log message
This commit is contained in:
parent
d41d56c70d
commit
e62088a3b1
1 changed files with 3 additions and 3 deletions
|
|
@ -428,9 +428,9 @@ public class JDBCInterpreter extends Interpreter {
|
|||
+ properties.getProperty(JDBC_JCEKS_CREDENTIAL_KEY));
|
||||
}
|
||||
} catch (Exception e) {
|
||||
logger.error("Failed to retrieve password from JCEKS", e);
|
||||
logger.error("For file: " + properties.getProperty(JDBC_JCEKS_FILE));
|
||||
logger.error("For key: " + properties.getProperty(JDBC_JCEKS_CREDENTIAL_KEY));
|
||||
logger.error("Failed to retrieve password from JCEKS \n" +
|
||||
"For file: " + properties.getProperty(JDBC_JCEKS_FILE) +
|
||||
"\nFor key: " + properties.getProperty(JDBC_JCEKS_CREDENTIAL_KEY), e);
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue