Files
core/ASCOfficeOdtFile/Source/Utility/Log.cpp
Elen.Subbotina 6138139c4e исправлен проект - подключен "старый" DocxFormat (тот который с AVS - без вытирания буста)
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-20 22:37:54 +03:00

59 lines
899 B
C++

// auto inserted precompiled begin
#include "precompiled_utility.h"
// auto inserted precompiled end
#include "Log.h"
#include <fstream>
#include <iostream>
Details::Log Log::s_loger("converter.log", "converter.err");
void Log::event(const std::string& message)
{
s_loger.event(message);
}
void Log::event(const std::wstring& message)
{
s_loger.event(message);
}
void Log::warning(const std::string& message)
{
s_loger.warning(message);
}
void Log::warning(const std::wstring& message)
{
s_loger.warning(message);
}
void Log::error(const std::string& message)
{
s_loger.error(message);
}
void Log::error(const std::wstring& message)
{
s_loger.error(message);
}
void Log::message(const std::string& message)
{
s_loger.message(message);
}
void Log::message(const std::wstring& message)
{
s_loger.message(message);
}