修正当前时间显示错误
This commit is contained in:
parent
8fa67ec04f
commit
371d4e3866
|
@ -433,7 +433,7 @@ void TaskScheduler::ShowStatus()
|
||||||
debug_printf("Task::ShowStatus [%d]", ts);
|
debug_printf("Task::ShowStatus [%d]", ts);
|
||||||
debug_printf(" 负载 %d.%d%%", p/100, p%100);
|
debug_printf(" 负载 %d.%d%%", p/100, p%100);
|
||||||
debug_printf(" 平均 %dus 当前 ", ts ? ct/ts : 0);
|
debug_printf(" 平均 %dus 当前 ", ts ? ct/ts : 0);
|
||||||
DateTime((int)(now/1000)).Show();
|
DateTime::Now().Show();
|
||||||
debug_printf(" 启动 ");
|
debug_printf(" 启动 ");
|
||||||
TimeSpan(now).Show(false);
|
TimeSpan(now).Show(false);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue