Files
EWF/library/test/selenium/src/web_driver_log.e
2013-04-12 09:16:52 -03:00

27 lines
690 B
Plaintext

note
description: "Object describing a log entry"
author: ""
date: "$Date$"
revision: "$Revision$"
class
WEB_DRIVER_LOG
feature
timestamp : NATURAL_32
--The timestamp of the entry.
level : detachable STRING_32
--The log level of the entry, for example, "INFO" (see log levels).
--ALL All log messages. Used for fetching of logs and configuration of logging.
--DEBUG Messages for debugging.
--INFO Messages with user information.
--WARNING Messages corresponding to non-critical problems.
--SEVERE Messages corresponding to critical errors.
--OFF No log messages. Used for configuration of logging.
message : detachable STRING_32
--The log message.
end