mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
ZEPPELIN-198 fixed logging to match standards
This commit is contained in:
parent
933c890854
commit
56a5174479
1 changed files with 1 additions and 1 deletions
|
|
@ -129,7 +129,7 @@ public abstract class FileInterpreter extends Interpreter {
|
|||
String results = listAll(newPath);
|
||||
return new InterpreterResult(Code.SUCCESS, Type.TEXT, results);
|
||||
} catch (Exception e) {
|
||||
logger.error(e.getStackTrace().toString());
|
||||
logger.error("Error listing files in path " + newPath, e);
|
||||
return new InterpreterResult(Code.ERROR, Type.TEXT, e.getMessage());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue