X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ffile_log.cc;h=1557bbd944eeb1633fd2b30efb53199f5a5e07b2;hb=6cd300ca8513b360990360d2999bec3b8988fd97;hp=b3c9797c9e8949a926a034732d25c55fa897f666;hpb=1858190cff2f960f3d1f0a5cc02c69da86088f5b;p=dcpomatic.git diff --git a/src/lib/file_log.cc b/src/lib/file_log.cc index b3c9797c9..1557bbd94 100644 --- a/src/lib/file_log.cc +++ b/src/lib/file_log.cc @@ -25,6 +25,7 @@ using std::cout; using std::string; using std::max; +using boost::shared_ptr; /** @param file Filename to write log to */ FileLog::FileLog (boost::filesystem::path file) @@ -34,15 +35,15 @@ FileLog::FileLog (boost::filesystem::path file) } void -FileLog::do_log (string m) +FileLog::do_log (shared_ptr entry) { FILE* f = fopen_boost (_file, "a"); if (!f) { - cout << "(could not log to " << _file.string() << "): " << m << "\n"; + cout << "(could not log to " << _file.string() << "): " << entry.get() << "\n"; return; } - fprintf (f, "%s\n", m.c_str ()); + fprintf (f, "%s\n", entry->get().c_str ()); fclose (f); }