Index: src/trackerd/trackerd.c =================================================================== --- src/trackerd/trackerd.c (revision 560) +++ src/trackerd/trackerd.c (working copy) @@ -145,7 +145,7 @@ static GOptionEntry entries[] = { {"exclude-dir", 'e', 0, G_OPTION_ARG_STRING_ARRAY, &no_watch_dirs, N_("Directory to exclude from indexing"), N_("/PATH/DIR")}, {"include-dir", 'i', 0, G_OPTION_ARG_STRING_ARRAY, &watch_dirs, N_("Directory to include in indexing"), N_("/PATH/DIR")}, {"no-indexing", 'n', 0, G_OPTION_ARG_NONE, &disable_indexing, N_("Disable any indexing or watching taking place"), NULL }, - {"verbosity", 'v', 0, G_OPTION_ARG_INT, &verbosity, N_("Value that controls the level of logging. Valid values are 0 (default minimal), 1 (detailed) and 2 (debug)"), N_("VALUE") }, + {"verbosity", 'v', 0, G_OPTION_ARG_INT, &verbosity, N_("Value that controls the level of logging. Valid values are 0 (displays/logs only errors), 1 (minimal), 2 (detailed), and 3 (debug)"), N_("VALUE") }, {"throttle", 't', 0, G_OPTION_ARG_INT, &throttle, N_("Value to use for throttling indexing. Value must be in range 0-20 (default 0) with lower values increasing indexing speed"), N_("VALUE") }, {"low-memory", 'm', 0, G_OPTION_ARG_NONE, &low_memory, N_("Minimizes the use of memory but may slow indexing down"), NULL }, {"language", 'l', 0, G_OPTION_ARG_STRING, &language, N_("Language to use for stemmer and stop words list (ISO 639-1 2 characters code)"), N_("LANG")}, @@ -1794,8 +1794,8 @@ sanity_check_option_values () if (tracker->verbosity < 0) { tracker->verbosity = 0; - } else if (tracker->verbosity > 2) { - tracker->verbosity = 2; + } else if (tracker->verbosity > 3) { + tracker->verbosity = 3; } tracker->metadata_table = g_hash_table_new_full (g_str_hash, g_str_equal, NULL, NULL); Index: src/trackerd/tracker-utils.c =================================================================== --- src/trackerd/tracker-utils.c (revision 560) +++ src/trackerd/tracker-utils.c (working copy) @@ -2125,7 +2125,7 @@ tracker_load_config_file () contents = g_strconcat ( "[General]\n", - "# Log Verbosity - Valid values are 0 (default, fastest), 1 (detailed), & 2 (debug)\n", + "# Log Verbosity - Valid values are 0 (displays/logs only errors), 1 (minimal), 2 (detailed), and 3 (debug)\n", "Verbosity=0\n\n", "[Watches]\n", "# List of directory roots to index and watch seperated by semicolons\n", @@ -3339,7 +3339,7 @@ tracker_info (const char *message, ...) msg = g_strdup_vprintf (message, args); va_end (args); - output_log (1, msg); + output_log (2, msg); g_free (msg); } @@ -3353,7 +3353,7 @@ tracker_debug (const char *message, ... msg = g_strdup_vprintf (message, args); va_end (args); - output_log (2, msg); + output_log (3, msg); g_free (msg); }