@@ -318,7 +318,7 @@ class Process : public IProcess {
318
318
LOG_TRACE_THREAD (" Terminating process with pid: {} {}" , process_pid_, status);
319
319
320
320
// log the status of the process
321
- Logger::readFromEngine (signalToString (status), util:: time::datetime_precise (), log_name_, true );
321
+ Logger::readFromEngine (signalToString (status), time ::datetime_precise (), log_name_, true );
322
322
323
323
is_initalized_ = false ;
324
324
}
@@ -365,8 +365,8 @@ class Process : public IProcess {
365
365
366
366
// timeout
367
367
if (ready == 0 ) {
368
- if (!current_line_.empty ()) lines.emplace_back (Line{current_line_, util:: time::datetime_precise ()});
369
- if (realtime_logging_) Logger::readFromEngine (current_line_, util:: time::datetime_precise (), log_name_);
368
+ if (!current_line_.empty ()) lines.emplace_back (Line{current_line_, time ::datetime_precise ()});
369
+ if (realtime_logging_) Logger::readFromEngine (current_line_, time ::datetime_precise (), log_name_);
370
370
371
371
return Status::TIMEOUT;
372
372
}
@@ -446,7 +446,7 @@ class Process : public IProcess {
446
446
// to the vector and reset the current_line_.
447
447
// Dont add empty lines
448
448
if (!current_line_.empty ()) {
449
- const auto time = Logger::should_log_ ? util:: time::datetime_precise () : " " ;
449
+ const auto time = Logger::should_log_ ? time ::datetime_precise () : " " ;
450
450
451
451
lines.emplace_back (Line{current_line_, time });
452
452
0 commit comments