Log some data

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public void Log(
	T data,
	int logLevel
)
Public Sub Log ( _
	data As T, _
	logLevel As Integer _
)
public:
void Log(
	T data, 
	int logLevel
)

Parameters

data
T
The data to be logged
logLevel
Int32
The logLevel. The Log function only logs when the logLevel is greater or equals to the DataLogger's logLevel

See Also