libinvdb/source/log.cc

11 lines
152 B
C++
Raw Normal View History

2015-11-07 19:14:47 +00:00
#include "log.hh"
#include "logstream.hh"
#include <memory>
namespace inventory {
std::shared_ptr<Logstream> Log::mp_logstream(new StdLogstream);
}