You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This script is filtering out log messages from htmlunit.
3
+
# It's a workaround for https://github.com/php-coder/mystamps/issues/538
4
+
#
5
+
# IMPORTANT: script should be executed with `sed -z` to be able to replace new line character.
6
+
#
7
+
8
+
# [INFO] Bad input type: "url", creating a text input
9
+
s|\[INFO\] Bad input type: "url", creating a text input\n||g
10
+
11
+
# [WARNING] CSS error: 'http://127.0.0.1:8081/public/bootstrap/3.3.7/css/bootstrap.min.css' [5:56298] Error in expression; ':' found after identifier "progid".
12
+
s|\[WARNING\] CSS error: '[^']\+' \[[^]]\+\] Error in expression; [^\.]\+\.\n||g
13
+
14
+
# [WARNING] CSS error: 'http://127.0.0.1:8081/public/bootstrap/3.3.7/css/bootstrap.min.css' [5:115558] Invalid color "#000\9".
15
+
s|\[WARNING\] CSS error: '[^']\+' \[[^]]\+\] Invalid color "[^"]\+"\.\n||g
16
+
17
+
# [WARNING] CSS error: 'http://127.0.0.1:8081/public/selectize/0.12.3/css/selectize.bootstrap3.css' [176:3] Error in declaration. '*' is not allowed as first char of a property.
18
+
s|\[WARNING\] CSS error: '[^']\+' \[[^]]\+\] Error in declaration\. '\*' is not allowed as first char of a property\.\n||g
19
+
20
+
# Simplify error message and make it match the next filter.
0 commit comments