Debug.log detection if it contains only PHP notices

This commit is contained in:
Erwan
2012-08-24 08:34:12 +02:00
parent f9609ee295
commit 508420f30f
2 changed files with 6 additions and 1 deletions

View File

@@ -106,7 +106,7 @@ class WpTarget
end
def has_debug_log?
Browser.instance.get(debug_log_url()).body[%r{\[[^\]]+\] PHP (?:Warning|Error):}] ? true : false
Browser.instance.get(debug_log_url()).body[%r{\[[^\]]+\] PHP (?:Warning|Error|Notice):}] ? true : false
end
def debug_log_url