diff options
Diffstat (limited to 'AK/LogStream.h')
-rw-r--r-- | AK/LogStream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/LogStream.h b/AK/LogStream.h index c5e80c97b9..9d6a0900bf 100644 --- a/AK/LogStream.h +++ b/AK/LogStream.h @@ -179,7 +179,7 @@ inline const LogStream& operator<<(const LogStream& stream, bool value) return stream << (value ? "true" : "false"); } -DebugLogStream dbg(); +[[deprecated("Plase use dbgln in AK/Format.h instead.")]] DebugLogStream dbg(); #ifdef KERNEL KernelLogStream klog(); |