Home | History | Annotate | Download | only in Common

Lines Matching defs:ERROR

34 ERROR   = 50

45 ERROR, QUIET, SILENT]
55 # For ERROR level
59 # String templates for ERROR/WARN/DEBUG log message
60 _ErrorMessageTemplate = '\n\n%(tool)s...\n%(file)s(%(line)s): error %(errorcode)04X: %(msg)s\n\t%(extra)s'
61 _ErrorMessageTemplateWithoutFile = '\n\n%(tool)s...\n : error %(errorcode)04X: %(msg)s\n\t%(extra)s'
67 # Flag used to take WARN as ERROR.
68 # By default, only ERROR message will break the tools execution.
154 ## Log ERROR message
156 # Once an error messages is logged, the tool's execution will be broken by raising
162 # @param ErrorCode The error code
164 # @param File The name of file which caused the error.
170 def error(ToolName, ErrorCode, Message=None, File=None, Line=None, ExtraData=None, RaiseError=IsRaiseError):
199 _ErrorLogger.log(ERROR, LogText)
204 quiet = _ErrorLogger.error
224 # For ERROR level
249 ## Raise up warning as error