libinvdb/source/log.cc

11 lines
152 B
C++

#include "log.hh"
#include "logstream.hh"
#include <memory>
namespace inventory {
std::shared_ptr<Logstream> Log::mp_logstream(new StdLogstream);
}