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:50:27 +0100 |
| commit | 6e99da2707e0af449d1aeec06a43de9af19cfa36 (patch) | |
| tree | ba9b27709eafda8d41a90628605cbe9f5e45026e /src/lib/config.h | |
| parent | d1e17b2719ed8930caecb0c80e51e0c2fd813b7c (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/lib/config.h')
| -rw-r--r-- | src/lib/config.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/lib/config.h b/src/lib/config.h index d927b3b19..215e6a4db 100644 --- a/src/lib/config.h +++ b/src/lib/config.h @@ -517,10 +517,6 @@ public: return _respect_kdm_validity_periods; } - boost::optional<boost::filesystem::path> player_activity_log_file () const { - return _player_activity_log_file; - } - boost::optional<boost::filesystem::path> player_debug_log_file () const { return _player_debug_log_file; } @@ -993,18 +989,6 @@ public: maybe_set (_respect_kdm_validity_periods, r); } - void set_player_activity_log_file (boost::filesystem::path p) { - maybe_set (_player_activity_log_file, p); - } - - void unset_player_activity_log_file () { - if (!_player_activity_log_file) { - return; - } - _player_activity_log_file = boost::none; - changed (); - } - void set_player_debug_log_file (boost::filesystem::path p) { maybe_set (_player_debug_log_file, p, PLAYER_DEBUG_LOG); } @@ -1263,10 +1247,6 @@ private: int _image_display; VideoViewType _video_view_type; bool _respect_kdm_validity_periods; - /** Log file containing things the player does (e.g. started, stopped, loaded - playlist etc.) Does not contain debugging information. - */ - boost::optional<boost::filesystem::path> _player_activity_log_file; /** Log file containing debug information for the player */ boost::optional<boost::filesystem::path> _player_debug_log_file; /** A directory containing DCPs whose contents are presented to the user |
