Commit f68cb458 by Jason Song Committed by GitHub

Merge pull request #711 from powerYao/req_master

output ClassLoaderUtil exception to logger
parents 89427dc5 ed09d345
...@@ -37,7 +37,7 @@ public class ClassLoaderUtil { ...@@ -37,7 +37,7 @@ public class ClassLoaderUtil {
} }
} catch (Throwable ex) { } catch (Throwable ex) {
classPath = System.getProperty("user.dir"); classPath = System.getProperty("user.dir");
ex.printStackTrace(); logger.warn("Failed to locate class path, fallback to user.dir: {}", classPath, ex);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment