diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-11-11 22:49:34 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-11-11 22:51:31 +0100 |
| commit | cfbe9d2f44e380efed7a61b5b5c7a2fec7794915 (patch) | |
| tree | 7d1933b5205c2f27616ff2ad3f4e0d0b477a2cd2 /src/wx/playlist_controls.cc | |
| parent | 6f2844fee27f6ebb15ea772ea2cbfc7bdf988102 (diff) | |
Remove player activity logging. Fixes #2122.
If I remember right this was for swaroop and I suspect nobody else
is really interested.
Diffstat (limited to 'src/wx/playlist_controls.cc')
| -rw-r--r-- | src/wx/playlist_controls.cc | 24 |
1 files changed, 0 insertions, 24 deletions
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<boost::filesystem::path> 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()) { |
