Index: src/trackerd/tracker-utils.c =================================================================== --- src/trackerd/tracker-utils.c (revision 831) +++ src/trackerd/tracker-utils.c (working copy) @@ -68,7 +68,7 @@ char *ignore_name[] = {"po", "CVS", "acl #define ZLIBBUFSIZ 8192 #define TEXT_SNIFF_SIZE 4096 - +long a = 0; static int info_allocated = 0; static int info_deallocated = 0; @@ -3412,13 +3412,11 @@ output_log (const char *message) loctime = localtime (&now); - strftime (buffer1, 64, "%d %b %Y, %H:%M:%S:", loctime); - - g_sprintf (buffer2, "%03ld", start.tv_usec / 1000); + strftime (buffer1, 64, "%H:%M:%S:", loctime); - output = g_strconcat (buffer1, buffer2, " - ", message, NULL); + output = g_strconcat (buffer1, " - ", message, NULL); - g_fprintf (fd, "%s\n", output); + g_fprintf (fd, "%ld: %s\n", a++, output); g_free (output); Index: src/trackerd/tracker-dbus-metadata.c =================================================================== --- src/trackerd/tracker-dbus-metadata.c (revision 831) +++ src/trackerd/tracker-dbus-metadata.c (working copy) @@ -219,8 +219,6 @@ tracker_dbus_method_metadata_get (DBusRe str = g_string_free (sql, FALSE); - tracker_log (str); - res = tracker_exec_sql_ignore_nulls (db_con, str); g_free (str); Index: src/trackerd/tracker-db-sqlite.c =================================================================== --- src/trackerd/tracker-db-sqlite.c (revision 831) +++ src/trackerd/tracker-db-sqlite.c (working copy) @@ -4318,10 +4318,7 @@ tracker_db_create_service (DBConnection service_type_id = tracker_get_id_for_service (service); - if (info->mime) - tracker_debug ("service id for %s is %d and sid is %s with mime %s", service, service_type_id, sid, info->mime); - else - tracker_debug ("service id for %s is %d and sid is %s", service, service_type_id, sid); + tracker_debug ("SID = %s", sid); str_service_type_id = tracker_int_to_str (service_type_id); Index: src/tracker-preferences/tracker-configuration.c =================================================================== --- src/tracker-preferences/tracker-configuration.c (revision 831) +++ src/tracker-preferences/tracker-configuration.c (working copy) @@ -340,7 +340,7 @@ create_config_file () "# Minimizes the use of memory but may slow indexing down\n", "LowMemoryMode=false\n\n", "# Set the initial sleeping time, in seconds\n", - "InitialSleep=60\n", + "InitialSleep=45\n", "[Watches]\n", "# List of directory roots to index and watch seperated by semicolons\n", "WatchDirectoryRoots=", g_get_home_dir (), ";\n",