welcome timestamp replace with readable date time

This commit is contained in:
LHearen
2018-10-11 14:29:48 +08:00
parent dbcde9fe42
commit 3a086fddf3
2 changed files with 3 additions and 2 deletions
@@ -21,6 +21,7 @@ import com.taobao.arthas.core.shell.system.impl.JobControllerImpl;
import com.taobao.arthas.core.shell.system.impl.JobImpl;
import com.taobao.arthas.core.shell.term.Term;
import com.taobao.arthas.core.util.Constants;
import com.taobao.arthas.core.util.DateUtils;
import com.taobao.arthas.core.util.LogUtil;
import com.taobao.middleware.logger.Logger;
@@ -119,7 +120,7 @@ public class ShellImpl implements Shell {
if (welcome != null && welcome.length() > 0) {
term.write(welcome + "\n");
term.write("pid: " + session.get(Session.PID) + "\n");
term.write("timestamp: " + System.currentTimeMillis() + "\n\n");
term.write("time: " + DateUtils.getCurrentDate() + "\n\n");
}
return this;
}