mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
ZEPPELIN-198 Fixed compile error for error logging.
This commit is contained in:
parent
d24f4c0f6f
commit
aec0512471
2 changed files with 14 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);
|
||||
logger.error(e.getStackTrace().toString());
|
||||
return new InterpreterResult(Code.ERROR, Type.TEXT, e.getMessage());
|
||||
}
|
||||
|
||||
|
|
|
|||
13
zeppelin-server/derby.log
Normal file
13
zeppelin-server/derby.log
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
----------------------------------------------------------------
|
||||
Sat Feb 27 11:32:48 EST 2016:
|
||||
Booting Derby version The Apache Software Foundation - Apache Derby - 10.10.1.1 - (1458268): instance a816c00e-0153-2393-4670-00003331fc90
|
||||
on database directory /tmp/spark-36b3fdde-8a10-43bd-9333-38c727e7f8de/metastore with class loader sun.misc.Launcher$AppClassLoader@4aa298b7
|
||||
Loaded from file:/home/tom/OpenSource/runyontr/incubator-zeppelin/interpreter/spark/dep/zeppelin-spark-dependencies-0.6.0-incubating-SNAPSHOT.jar
|
||||
java.vendor=Oracle Corporation
|
||||
java.runtime.version=1.8.0_45-b14
|
||||
user.dir=/home/tom/OpenSource/runyontr/incubator-zeppelin/zeppelin-server
|
||||
os.name=Linux
|
||||
os.arch=amd64
|
||||
os.version=4.2.0-19-generic
|
||||
derby.system.home=null
|
||||
Database Class Loader started - derby.database.classpath=''
|
||||
Loading…
Reference in a new issue