Browse Source

Logfiles mit 0% werden als Fehler gemeldet

gc-server3 10 months ago
parent
commit
e4fd7b2a8a
2 changed files with 6 additions and 2 deletions
  1. 2 1
      .gitignore
  2. 4 1
      fehlerbericht/prepare_logfiles.py

+ 2 - 1
.gitignore

@@ -14,5 +14,6 @@ tools/pdf/data/mit_Briefpapier
 sandbox/mitoenv/
 fehlerbericht/temp/
 fehlerbericht/temp_ori/
+fehlerbericht/config.py
 mailserver/temp/
-*.zip
+*.zip

+ 4 - 1
fehlerbericht/prepare_logfiles.py

@@ -39,7 +39,7 @@ class PrepareLogfiles:
                     "!! SMTP-Konfiguration bitte anpassen !!",
                     "! SMTP-Konfiguration bitte anpassen !",
                 )
-                err_count = [0] * 10
+                err_count = [0] * 15
 
                 e, err_count[0] = re.subn(r"(!![^\n]*!!)", r"<b>\1</b>", e)
                 e, err_count[1] = re.subn(
@@ -61,11 +61,14 @@ class PrepareLogfiles:
                 )
 
                 e, err_count[3] = re.subn(r"(Der Befehl \".*\" ist entweder falsch geschrieben)", r"<b>\1</b>", e)
+                # e, err_count[9] = re.subn(r"(.* is not recognized as an internal or external command)", r"<b>\1</b>", e)
+                # is not recognized as an internal or external command
 
                 e, err_count[4] = re.subn(r"(FEHLER: .*: Source: Impromptu)", r"<b>\1</b>", e)
                 e, err_count[5] = re.subn(r"(Traceback)", r"<b>\1</b>", e)
                 e, err_count[6] = re.subn(r"(Fatal error: Uncaught exception)", r"<b>\1</b>", e)
                 e, err_count[7] = re.subn(r"(Failed to create COM object)", r"<b>\1</b>", e)
+                e, err_count[8] = re.subn(r"(0.0%)", r"<b>\1</b>", e)
                 e = re.sub(r"<([^a-z/])", r"\1", e)
                 e = re.sub(r"/\s+>", "/>", e)
                 e = re.sub(r"([^a-z/])>", r"\1", e)