AddToDebugLog

<< Click to Display Table of Contents >>

Navigation:  Programming Mechworks PDM > DBWCommandShell > Commands Reference > PDMSystem >

AddToDebugLog

Description

Writes in the %TMP%\DBWorks...LOG the passed message string; the function may be useful for debugging custom applications written over the DBWorks API

Syntax

call DBWShell("AddToDebugLog MessageString")

Parameters

MessageString

A string to be added to the log

See also

AddToDebugLog
AddToEventLog

Example

DBWShell("AddToDebugLog " & replace("Before My Function"," ","|"))

...
DBWShell("AddToDebugLog " & replace("After My Function"," ","|"))