Namespace: webdriver.loggingView Sourceclass EntryA single log entry.new Entry(level, message, opt_timestamp, opt_type)Parameterslevel({name: string, value: number}|string)The entry level.messagestringThe log message.opt_timestampnumber=The time this entry was generated, in milliseconds since 0:00:00, January 1, 1970 UTC. If omitted, the current time will be used.opt_typestring=The log type, if known.Instance MethodstoJSON(arg0)code »Parametersarg0string=Returns{level: string, message: string, timestamp: number, type: string}The JSON representation of this entry.Instance Propertieslevel{name: string, value: number}No description.messagestringNo description.timestampnumberNo description.typestringNo description.Static FunctionsEntry.fromClosureLogRecord(logRecord, opt_type)code »Converts a goog.debug.LogRecord into a webdriver.logging.Entry.ParameterslogRecordgoog.debug.LogRecordThe record to convert.opt_typestring=The log type.Returnswebdriver.logging.EntryThe converted entry.