Package io.webfolder.cdp.command
Interface Log
-
public interface LogProvides access to log entries
-
-
Method Summary
Modifier and Type Method Description voidclear()Clears the log.voiddisable()Disables log domain, prevents further log entries from being reported to the client.voidenable()Enables log domain, sends the entries collected so far to the client by means of theentryAddednotification.voidstartViolationsReport(java.util.List<ViolationSetting> config)start violation reporting.voidstopViolationsReport()Stop violation reporting.
-
-
-
Method Detail
-
clear
void clear()
Clears the log.
-
disable
void disable()
Disables log domain, prevents further log entries from being reported to the client.
-
enable
void enable()
Enables log domain, sends the entries collected so far to the client by means of theentryAddednotification.
-
startViolationsReport
void startViolationsReport(java.util.List<ViolationSetting> config)
start violation reporting.- Parameters:
config- Configuration for violations.
-
stopViolationsReport
void stopViolationsReport()
Stop violation reporting.
-
-