Plasma Engine  2.0
Loading...
Searching...
No Matches
ConsoleWriter.h
1#pragma once
2
3#include <Foundation/Logging/Log.h>
4
5namespace plLogWriter
6{
8 class PL_FOUNDATION_DLL Console
9 {
10 public:
12 static void LogMessageHandler(const plLoggingEventData& eventData);
13
15 static void SetTimestampMode(plLog::TimestampMode mode);
16
17 private:
18 static plLog::TimestampMode s_TimestampMode;
19 };
20} // namespace plLogWriter
TimestampMode
This enum is used in context of outputting timestamp information to indicate a formatting for said ti...
Definition Log.h:359
A simple log writer that writes out log messages using printf.
Definition ConsoleWriter.h:9
The data that is sent through plLogInterface.
Definition Log.h:50