Click or drag to resize

P4CallBacksLogMessageDelegate Delegate

Delegate definition for the Logging callback from the dll.

Namespace:  Perforce.P4
Assembly:  p4api.net (in p4api.net.dll) Version: 2023.2.258.5793
Syntax
public delegate void LogMessageDelegate(
	int log_level,
	string file,
	int line,
	string message
)

Parameters

log_level
Type: SystemInt32
Log Level Lower values are more serious than higher values.
file
Type: SystemString
Name of the cpp file containing the call.
line
Type: SystemInt32
Line number in the cpp file of the call.
message
Type: SystemString
Descriptive message to be logged.
See Also