]> git.lyx.org Git - features.git/commitdiff
Recognize biber warnings/errors/info messages
authorJuergen Spitzmueller <spitz@lyx.org>
Sun, 26 May 2013 14:06:13 +0000 (16:06 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Sun, 26 May 2013 14:06:13 +0000 (16:06 +0200)
src/frontends/qt4/GuiLog.cpp

index f45992eef7ca33b2172087838751a9f3d0975191..740193cd870fd4824887a17f0042af417825d554 100644 (file)
@@ -38,11 +38,11 @@ namespace frontend {
 
 // Regular expressions needed at several places
 // Information
-QRegExp exprInfo("^(Document Class:|LaTeX Font Info:|File:|Package:|Language:|Underfull|Overfull|\\(|\\\\).*$");
+QRegExp exprInfo("^(Document Class:|LaTeX Font Info:|File:|Package:|Language:|Underfull|Overfull|.*> INFO - |\\(|\\\\).*$");
 // Warnings
-QRegExp exprWarning("^(LaTeX Warning|LaTeX Font Warning|Package [\\w\\.]+ Warning|Class \\w+ Warning|Warning--).*$");
+QRegExp exprWarning("^(LaTeX Warning|LaTeX Font Warning|Package [\\w\\.]+ Warning|Class \\w+ Warning|Warning--|.*> WARN - ).*$");
 // Errors
-QRegExp exprError("^(!|.*---line [0-9]+ of file).*$");
+QRegExp exprError("^(!|.*---line [0-9]+ of file|.*> FATAL - |.*> ERROR - ).*$");
 
 
 /////////////////////////////////////////////////////////////////////