diff options
Diffstat (limited to 'src/lib/log.cc')
| -rw-r--r-- | src/lib/log.cc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/lib/log.cc b/src/lib/log.cc index f84cfd3a5..97b649893 100644 --- a/src/lib/log.cc +++ b/src/lib/log.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -18,10 +18,12 @@ */ + /** @file src/log.cc * @brief A very simple logging class. */ + #include "log.h" #include "cross.h" #include "config.h" @@ -39,11 +41,11 @@ using std::make_shared; Log::Log () - : _types (0) { } + void Log::log (shared_ptr<const LogEntry> e) { @@ -56,6 +58,7 @@ Log::log (shared_ptr<const LogEntry> 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) { |
