aboutsummaryrefslogtreecommitdiffstats
path: root/yage/core/logsink.cpp
blob: 1cc8b139a26155a962afa193013830c9c05f7b32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ----------------------------------------------------------------------------
 * logsink.cpp
 *
 * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
 * See file LICENSE for more details
 * ----------------------------------------------------------------------------
 */

#include "logsink.h"

namespace yage
{

void LogSink::write(const LogMessage::Meta &meta, const std::string &msg)
{
    wrapper_->write(meta, msg);
}

} // namespace yage