mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:17:44 +00:00
AK: Provide off-switch for dbg() output
This commit is contained in:
parent
b29f4add6b
commit
1ef26e0c09
2 changed files with 20 additions and 1 deletions
|
@ -163,13 +163,25 @@ KernelLogStream::~KernelLogStream()
|
||||||
|
|
||||||
DebugLogStream::~DebugLogStream()
|
DebugLogStream::~DebugLogStream()
|
||||||
{
|
{
|
||||||
if (!empty()) {
|
if (!empty() && s_enabled) {
|
||||||
char newline = '\n';
|
char newline = '\n';
|
||||||
write(&newline, 1);
|
write(&newline, 1);
|
||||||
dbgputstr(reinterpret_cast<char*>(data()), size());
|
dbgputstr(reinterpret_cast<char*>(data()), size());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void DebugLogStream::set_enabled(bool enabled)
|
||||||
|
{
|
||||||
|
s_enabled = enabled;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool DebugLogStream::is_enabled()
|
||||||
|
{
|
||||||
|
return s_enabled;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool DebugLogStream::s_enabled = true;
|
||||||
|
|
||||||
#ifndef KERNEL
|
#ifndef KERNEL
|
||||||
StdLogStream::~StdLogStream()
|
StdLogStream::~StdLogStream()
|
||||||
{
|
{
|
||||||
|
|
|
@ -115,6 +115,13 @@ class DebugLogStream final : public BufferedLogStream {
|
||||||
public:
|
public:
|
||||||
DebugLogStream() { }
|
DebugLogStream() { }
|
||||||
virtual ~DebugLogStream() override;
|
virtual ~DebugLogStream() override;
|
||||||
|
|
||||||
|
// DebugLogStream only checks `enabled` and possibly generates output while the destructor runs.
|
||||||
|
static void set_enabled(bool);
|
||||||
|
static bool is_enabled();
|
||||||
|
|
||||||
|
private:
|
||||||
|
static bool s_enabled;
|
||||||
};
|
};
|
||||||
|
|
||||||
#if !defined(KERNEL)
|
#if !defined(KERNEL)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue