| SignDocDocumentLoaderinitLogging Method |
Initialize logging.
This function throws an exception if the log file cannot be opened.This function initializes logging for all threads of the current process.
Namespace: de.softpro.signdocsdkAssembly: SPSignDoc_4.1_DotNetLibd (in SPSignDoc_4.1_DotNetLibd.dll) Version: 1.0.5882.21462
Syntaxpublic void initLogging(
string level,
string pathname,
bool setEnv
)
Public Sub initLogging (
level As String,
pathname As String,
setEnv As Boolean
)
public:
void initLogging(
String^ level,
String^ pathname,
bool setEnv
)
member initLogging :
level : string *
pathname : string *
setEnv : bool -> unit
Parameters
- level
- Type: SystemString
The logging level: "0" (log nothing) through "5" (log everything), optionally followed by "T" to log process and thread IDs. - pathname
- Type: SystemString
The pathname of the log file. - setEnv
- Type: SystemBoolean
true to set the SPDEBUG and SPDEBUGDIR environment variables from aLevel and aPathname, respectively. This will happen only if the log file is opened successfully.
See Also