mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 15:38:10 +00:00
LibCore: Convert dbgprintf() => dbgln()
This commit is contained in:
parent
dffab4e034
commit
c1dd5553a8
2 changed files with 2 additions and 5 deletions
|
@ -27,7 +27,6 @@
|
|||
#include <AK/Debug.h>
|
||||
#include <LibCore/NetworkJob.h>
|
||||
#include <LibCore/NetworkResponse.h>
|
||||
#include <stdio.h>
|
||||
|
||||
namespace Core {
|
||||
|
||||
|
@ -68,9 +67,7 @@ void NetworkJob::did_fail(Error error)
|
|||
NonnullRefPtr<NetworkJob> protector(*this);
|
||||
|
||||
m_error = error;
|
||||
#if CNETWORKJOB_DEBUG
|
||||
dbgprintf("%s{%p} job did_fail! error: %u (%s)\n", class_name(), this, (unsigned)error, to_string(error));
|
||||
#endif
|
||||
dbgln_if(CNETWORKJOB_DEBUG, "{}{{{:p}}} job did_fail! error: {} ({})", class_name(), this, (unsigned)error, to_string(error));
|
||||
ASSERT(on_finish);
|
||||
on_finish(false);
|
||||
shutdown();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue