]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Tooltips: Added tooltips for tvhlog.c.
authorMark Clarkstone <hello@markclarkstone.co.uk>
Sat, 9 Jan 2016 20:53:20 +0000 (20:53 +0000)
committerJaroslav Kysela <perex@perex.cz>
Wed, 20 Jan 2016 12:53:08 +0000 (13:53 +0100)
src/tvhlog.c

index e8a4308fc18a017b7de687fd1c3a6957adbee321..fedee81e7c585b23e6c6a464c8ba59c87e53d16e 100644 (file)
@@ -639,6 +639,9 @@ const idclass_t tvhlog_conf_class = {
       .type   = PT_STR,
       .id     = "path",
       .name   = N_("Debug log path"),
+      /* Should this really be called Debug log path? Don't you need to
+       * enter a filename here not just a path? */
+      .desc   = N_("Enter a filename for debug output."),
       .get    = tvhlog_class_path_get,
       .set    = tvhlog_class_path_set,
       .group  = 1,
@@ -647,6 +650,7 @@ const idclass_t tvhlog_conf_class = {
       .type   = PT_BOOL,
       .id     = "enable_syslog",
       .name   = N_("Enable syslog"),
+      .desc   = N_("Enable/disable logging to syslog."),
       .get    = tvhlog_class_enable_syslog_get,
       .set    = tvhlog_class_enable_syslog_set,
       .group  = 1,
@@ -655,6 +659,7 @@ const idclass_t tvhlog_conf_class = {
       .type   = PT_BOOL,
       .id     = "syslog",
       .name   = N_("Debug to syslog"),
+      .desc   = N_("Enable/disable debugging output to syslog."),
       .get    = tvhlog_class_debug_syslog_get,
       .set    = tvhlog_class_debug_syslog_set,
       .group  = 1,
@@ -663,6 +668,9 @@ const idclass_t tvhlog_conf_class = {
       .type   = PT_STR,
       .id     = "debugsubs",
       .name   = N_("Debug subsystems"),
+      .desc   = N_("Enter comma separated list of subsystems you want "
+                   "debugging output for (e.g "
+                   "+linuxdvb,+subscriptions,+mpegts)."),
       .get    = tvhlog_class_debugsubs_get,
       .set    = tvhlog_class_debugsubs_set,
       .group  = 1,
@@ -671,6 +679,7 @@ const idclass_t tvhlog_conf_class = {
       .type   = PT_BOOL,
       .id     = "trace",
       .name   = N_("Debug trace (low-level)"),
+      .desc   = N_("Enable/disable including of low level debug traces."),
       .get    = tvhlog_class_trace_get,
       .set    = tvhlog_class_trace_set,
 #if !ENABLE_TRACE
@@ -682,6 +691,8 @@ const idclass_t tvhlog_conf_class = {
       .type   = PT_STR,
       .id     = "tracesubs",
       .name   = N_("Trace subsystems"),
+      .desc   = N_("Enter comma separated list of subsystems you want "
+                   "to get traces for (e.g +linuxdvb,+subscriptions,+mpegts)."),
       .get    = tvhlog_class_tracesubs_get,
       .set    = tvhlog_class_tracesubs_set,
 #if !ENABLE_TRACE
@@ -693,6 +704,7 @@ const idclass_t tvhlog_conf_class = {
       .type   = PT_BOOL,
       .id     = "libav",
       .name   = N_("Debug libav log"),
+      .desc   = N_("Enable/disable libav log output."),
       .get    = tvhlog_class_libav_get,
       .set    = tvhlog_class_libav_set,
       .group  = 1,