mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 07:23:34 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@64101 954022d7-b5bf-4e40-9824-e11837661b57
17 lines
324 B
C++
17 lines
324 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 warning(const std::wstring& message);
|
|
void error(const std::string& message);
|
|
|
|
}
|
|
|
|
|