TraceLoggerLogContinue(String) Method

Appends further message to a line started by LogStart, does not terminate the line.

Definition

Namespace: ASCOM.Utilities
Assembly: ASCOM.Utilities (in ASCOM.Utilities.dll) Version: 7.1.3+4851.c5da65c2b
C#
public void LogContinue(
	string Message
)

Parameters

Message  String
The additional message to appear in the line

Remarks

This can be called multiple times to build up a complex log line if required.

Will create a LOGISSUE message in the log if called before a line has been started with LogStart. Possible reasons for this are exceptions causing the normal flow of code to be bypassed or logic errors.

This overload is not available through COM, please use "LogContinue(ByVal Message As String, ByVal HexDump As Boolean)" with HexDump set False to achieve this effect.

See Also