mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
16 lines
297 B
C++
16 lines
297 B
C++
#pragma once
|
|
|
|
#include "Logger.h"
|
|
|
|
namespace Log
|
|
{
|
|
void info(const std::string& message);
|
|
void event(const std::string& message);
|
|
void message(const std::string& message);
|
|
void warning(const std::string& message);
|
|
void error(const std::string& message);
|
|
|
|
}; // namespace Log
|
|
|
|
|