diff options
author | asynts <asynts@gmail.com> | 2021-01-17 20:28:43 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-22 22:14:30 +0100 |
commit | fb8d3635d912a40a66a9e4b50454cfdd83f71d16 (patch) | |
tree | 8a5183f91957d1e3e7bf27a6411c06d96363918f /Userland/Shell/Job.h | |
parent | 24888457d5ee7e3df8015cdc4481ccaa25d07565 (diff) | |
download | serenity-fb8d3635d912a40a66a9e4b50454cfdd83f71d16.zip |
Everywhere: Replace a bundle of dbg with dbgln.
These changes are arbitrarily divided into multiple commits to make it
easier to find potentially introduced bugs with git bisect.
Diffstat (limited to 'Userland/Shell/Job.h')
-rw-r--r-- | Userland/Shell/Job.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Shell/Job.h b/Userland/Shell/Job.h index 1be90d3bf7..baf0bc3312 100644 --- a/Userland/Shell/Job.h +++ b/Userland/Shell/Job.h @@ -55,7 +55,7 @@ public: if (m_active) { auto elapsed = m_command_timer.elapsed(); // Don't mistake this for the command! - dbg() << "Job entry \"" << m_cmd << "\" deleted in " << elapsed << " ms"; + dbgln("Job entry '{}' deleted in {} ms", m_cmd, elapsed); } #endif } |