Loading...
Searching...
No Matches
consoleStream.hpp
Go to the documentation of this file.
1
2#pragma once
3
5
6namespace by {
7
13 class _nout consoleStream: public stream {
15
16 public:
18
19 public:
20 // Stream:
21 const std::string& getName() const override;
22
23 using super::logBypass;
24 nbool logBypass(const nchar* msg) override;
25 };
26}
Console output stream for logging to standard output.
Definition consoleStream.hpp:13
nbool logBypass(const nchar *msg) override
Log message directly without formatting.
Base class for all logging output streams.
Definition stream.hpp:13
Rich logging support with polymorphic type conversion.
Definition richLog.hpp:34