X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Fplaylist_controls.cc;h=3be47ad97cd0d4ad7a264cb938bc3263e078d072;hp=129e0ceca407eee9990cac7a69e092552c8bb90e;hb=cfbe9d2f44e380efed7a61b5b5c7a2fec7794915;hpb=6f2844fee27f6ebb15ea772ea2cbfc7bdf988102 diff --git a/src/wx/playlist_controls.cc b/src/wx/playlist_controls.cc index 129e0ceca..3be47ad97 100644 --- a/src/wx/playlist_controls.cc +++ b/src/wx/playlist_controls.cc @@ -232,28 +232,6 @@ PlaylistControls::next_clicked () update_current_content (); } -void -PlaylistControls::log (wxString s) -{ - optional log = Config::instance()->player_activity_log_file(); - if (!log) { - return; - } - - struct timeval time; - gettimeofday (&time, 0); - char buffer[64]; - time_t const sec = time.tv_sec; - struct tm* t = localtime (&sec); - strftime (buffer, 64, "%c", t); - wxString ts = std_to_wx(string(buffer)) + N_(": "); - FILE* f = fopen_boost (*log, "a"); - if (!f) { - return; - } - fprintf (f, "%s%s\n", wx_to_std(ts).c_str(), wx_to_std(s).c_str()); - fclose (f); -} void PlaylistControls::add_playlist_to_list (SPL spl) @@ -361,8 +339,6 @@ PlaylistControls::spl_selection_changed () void PlaylistControls::select_playlist (int selected, int position) { - log (wxString::Format("load-playlist %s", std_to_wx(_playlists[selected].name()).data())); - wxProgressDialog dialog (_("DCP-o-matic"), "Loading playlist and KDMs"); for (auto const& i: _playlists[selected].get()) {