summaryrefslogtreecommitdiff
path: root/src/lib/config.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-02-14 22:10:35 +0000
committerCarl Hetherington <cth@carlh.net>2019-02-14 22:10:35 +0000
commit7d1c30d17b3494e07fd32dd34cd4806006e725dd (patch)
treeed2c22866ca1565785c3ea9b8802d8034fb4b5ee /src/lib/config.h
parent6a1837228d90b49bba78c8822b989463fb4dfb0d (diff)
Player log file -> player activity log file.
Diffstat (limited to 'src/lib/config.h')
-rw-r--r--src/lib/config.h19
1 files changed, 11 insertions, 8 deletions
diff --git a/src/lib/config.h b/src/lib/config.h
index e3a34aed3..5ae14ebda 100644
--- a/src/lib/config.h
+++ b/src/lib/config.h
@@ -484,8 +484,8 @@ public:
return _respect_kdm_validity_periods;
}
- boost::optional<boost::filesystem::path> player_log_file () const {
- return _player_log_file;
+ boost::optional<boost::filesystem::path> player_activity_log_file () const {
+ return _player_activity_log_file;
}
boost::optional<boost::filesystem::path> player_content_directory () const {
@@ -940,15 +940,15 @@ public:
maybe_set (_respect_kdm_validity_periods, r);
}
- void set_player_log_file (boost::filesystem::path p) {
- maybe_set (_player_log_file, p);
+ void set_player_activity_log_file (boost::filesystem::path p) {
+ maybe_set (_player_activity_log_file, p);
}
- void unset_player_log_file () {
- if (!_player_log_file) {
+ void unset_player_activity_log_file () {
+ if (!_player_activity_log_file) {
return;
}
- _player_log_file = boost::none;
+ _player_activity_log_file = boost::none;
changed ();
}
@@ -1227,7 +1227,10 @@ private:
PlayerMode _player_mode;
int _image_display;
bool _respect_kdm_validity_periods;
- boost::optional<boost::filesystem::path> _player_log_file;
+ /** 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;
/** A directory containing DCPs whose contents are presented to the user
in the dual-screen player mode. DCPs on the list can be loaded
for playback.