Skip to content

Commit

Permalink
align << operator in Task::info()
Browse files Browse the repository at this point in the history
  • Loading branch information
w0lek committed May 21, 2024
1 parent b620135 commit 563eb54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vpr/src/server/task.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ void Task::success(const std::string& result) {
std::string Task::info(bool skip_duration) const {
std::stringstream ss;
ss << "task["
<< "id=" << std::to_string(m_job_id)
<< ",cmd=" << std::to_string(m_cmd);
<< "id=" << std::to_string(m_job_id)
<< ",cmd=" << std::to_string(m_cmd);
if (!skip_duration) {
ss << ",exists=" << get_pretty_duration_str_from_ms(time_ms_elapsed());
}
Expand Down

0 comments on commit 563eb54

Please sign in to comment.