mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Use LOG.error(msg, e)
This commit is contained in:
parent
62b64a009e
commit
f6d8de3fe8
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@ public class Credentials {
|
|||
CredentialsInfoSaving info = gson.fromJson(json, CredentialsInfoSaving.class);
|
||||
this.credentialsMap = info.credentialsMap;
|
||||
} catch (IOException e) {
|
||||
LOG.error("Error loading credentials file");
|
||||
LOG.error("Error loading credentials file", e);
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue