Namespace: webdriver.loggingView Sourceclass EntryA single log entry recorded by a WebDriver component, such as a remote WebDriver server. new Entry(level, message, opt_timestamp, opt_type)Parameterslevel(webdriver.logging.Level|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 Propertieslevelwebdriver.logging.LevelNo description.messagestringNo description.timestampnumberNo description.typestringNo description.Static FunctionsEntry.fromClosureLogRecord(logRecord, opt_type)code »Converts a goog.debug.LogRecord into a webdriver.logging.Entry. ParameterslogRecordwebdriver.logging.LogRecordThe record to convert. opt_typestring=The log type. Returnswebdriver.logging.EntryThe converted entry.