X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Flog.cc;h=aae492faffd07826517d237150e48550dc0748c1;hb=8b52763e14ae99c0b04d381afdea0aa915c1c56d;hp=f84cfd3a51cf38b2a1c0e04223e9fdd4ff913cf6;hpb=28111007e2e6fd62f5810be780706ae1618bd33f;p=dcpomatic.git diff --git a/src/lib/log.cc b/src/lib/log.cc index f84cfd3a5..aae492faf 100644 --- a/src/lib/log.cc +++ b/src/lib/log.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2015 Carl Hetherington + Copyright (C) 2012-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,13 +18,15 @@ */ + /** @file src/log.cc * @brief A very simple logging class. */ -#include "log.h" -#include "cross.h" + #include "config.h" +#include "cross.h" +#include "log.h" #include "string_log_entry.h" #include #include @@ -32,18 +34,18 @@ #include "i18n.h" -using std::string; using std::cout; -using std::shared_ptr; using std::make_shared; +using std::shared_ptr; +using std::string; Log::Log () - : _types (0) { } + void Log::log (shared_ptr e) { @@ -56,6 +58,7 @@ Log::log (shared_ptr e) do_log (e); } + /** @param n String to log */ void Log::log (string message, int type) @@ -71,6 +74,7 @@ Log::log (string message, int type) do_log (e); } + void Log::dcp_log (dcp::NoteType type, string m) { @@ -87,6 +91,7 @@ Log::dcp_log (dcp::NoteType type, string m) } } + void Log::set_types (int t) {