# # # patch "guitone/res/forms/preferences.ui" # from [b2a58b08e11a292a2f334514e2c24dfedcc7cd21] # to [50dcda14fc2c4f5147800b73b015bf988efd52f4] # # patch "guitone/res/i18n/guitone_de.ts" # from [10ac88a1778d3080da3364fb948d06be4a4b4906] # to [5861fddfc07e8d18c75fb918b7ace3021a971bfa] # # patch "guitone/src/util/DebugLog.cpp" # from [061f8dd3f473df0360dd67bad76e70f8a891462d] # to [0bf89411af60bddec2e3e1e527ecb5d025caa37e] # ============================================================ --- guitone/res/forms/preferences.ui b2a58b08e11a292a2f334514e2c24dfedcc7cd21 +++ guitone/res/forms/preferences.ui 50dcda14fc2c4f5147800b73b015bf988efd52f4 @@ -5,7 +5,7 @@ 0 0 - 343 + 372 248 @@ -17,6 +17,12 @@ 0 + + + 372 + 248 + + 16777215 ============================================================ --- guitone/res/i18n/guitone_de.ts 10ac88a1778d3080da3364fb948d06be4a4b4906 +++ guitone/res/i18n/guitone_de.ts 5861fddfc07e8d18c75fb918b7ace3021a971bfa @@ -932,63 +932,103 @@ monotone gab zurück: Preferences - + Error Fehler - + Notice Hinweis - + You need to reload your current workspace or restart guitone to use the new monotone binary. Sie müssen Ihren derzeitigen Arbeitsbereich neu laden oder guitone neu starten, um die neuen Einstellungen zu verwenden. - + Choose the monotone executable Wählen Sie die ausführbare Datei von monotone - + Binaries (mtn mtn.exe) Ausführbare Dateien (mtn mtn.exe) - + The path to the monotone binary is either invalid or points to an older version of monotone. Guitone requires monotone version %1 or a monotone with interface version %2 or later. Der Pfad zur ausführbaren Datei von monotone ist entweder ungültig oder zeigt auf eine ältere Version von monotone. Guitone benötigt monotone Version %1 oder ein monotone mit einer Interface-Version %2 oder neuer. + + + Low (fatal errors) + Niedrig (fatale Fehler) + + + + Medium (critical errors) + Mittel (kritische Fehler) + + + + High (warnings) + Hoch (Warnungen) + + + + All (debug messages) + Alle (Debug-Meldungen) + PreferencesDialog - + Preferences Einstellungen - + Path to monotone executable Pfad zur ausführbaren Datei von monotone - + Browse Durchsuchen - + OK OK - + Cancel Abbrechen + + + Logging + Protokollierung + + + + enable console logging + Protokollierung auf Konsole aktivieren + + + + enable file logging (%1) + Protokollierung in Datei aktivieren (%1) + + + + Log level + Protokoll-Level + QShortcut ============================================================ --- guitone/src/util/DebugLog.cpp 061f8dd3f473df0360dd67bad76e70f8a891462d +++ guitone/src/util/DebugLog.cpp 0bf89411af60bddec2e3e1e527ecb5d025caa37e @@ -51,6 +51,12 @@ DebugLog::DebugLog() "disable file logging.").arg(logFilePath())); fileLogging = false; } + + QString sep; + sep.fill('=', 32); + log(Debug, sep); + log(Debug, "| guitone session started |"); + log(Debug, sep); } DebugLog::~DebugLog() @@ -95,7 +101,7 @@ void DebugLog::log(Type t, QString msg) QString logStr; logStr.append( QString("%1: %2: %3\n") - .arg(current.toString("yyyy-MM-dd hh:mm:ss")) + .arg(current.toString("yyyy-MM-dd hh:mm:ss.zzz")) .arg(errors[t-1]) .arg(msg) );