change the agent log level to millisecond (#1580)

* Fix bug stop stopSpan when not createSpan

* Fix bug stop stopSpan when not createSpan

* change the agent log level to millisecond
This commit is contained in:
caoyixiong 2018-08-23 17:17:27 +08:00 committed by 吴晟 Wu Sheng
parent 26f88ba522
commit 31e4ceb0b1
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ public class EasyLogger implements ILog {
String format(LogLevel level, String message, Throwable t) {
return StringUtil.join(' ', level.name(),
new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()),
new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS").format(new Date()),
targetClass.getSimpleName(),
": ",
message,