You are here:
C++ API
Overviews
C++ API
C++ Support Classes
COM Interface
>
Enumerations
Using the dtSearch Engine with C++
Using the dtSearch Engine with C++ (Linux)
Enumerations
Language Analyzer API
External Thesaurus API
File Parser API
Classes
Functions
Structs, Records, Enums
Types
Variables
>
DebugLogFlags Enumeration
BinaryFilesSettings Enumeration
CheckConfigurationFlags Enumeration
ConvertFlags Enumeration
ConvertPathFlags Enumeration
DataSourceAccessResult Enumeration
DebugLogFlags Enumeration
ErrorCodes Enumeration
ExtractionOptionsFlags Enumeration
FieldFlags Enumeration
FileInfoFlags Enumeration
HyphenSettings Enumeration
IcuStatusCode Enumeration
IndexingFlags Enumeration
IndexingStep Enumeration
ListIndexFlags Enumeration
ListingFlags Enumeration
MergeStep Enumeration
MessageCode Enumeration
OutputFormat Enumeration
ReportFlags Enumeration
SearchFlags Enumeration
SortFlags Enumeration
TextFlags Enumeration
TypeId Enumeration
UnicodeFilterFlags Enumeration
UnindexedSearchFlags Enumeration
VerifyStep Enumeration
ViewerInfoFlags Enumeration
WordListBuilderFlags Enumeration
Close
dtSearch Text Retrieval Engine Programmer's Reference
Contents
Index
Home
DebugLogFlags Enumeration
Collapse All
Expand All
Flags for use with
dtssDebugLogEx
(C++) or SetDebugLogging (.NET)
*
Remarks
dtsCrashLog is for use only in .NET, Java, and COM. In C++, use
dtssInstallCrashDiagnostics
instead.
*
File
File:
dtsearch.h
Syntax
C++
enum
DebugLogFlags
{
dtsLogTime
= 1,
dtsLogCommit
= 2,
dtsLogAppend
= 4,
dtsLogTruncate
= 64,
dtsCrashLog
= 0x1000 };
Members
Members
Description
dtsLogTime = 1
Each line in the log will have include the time, in hundredths of a second, since the start of execution.
dtsLogCommit = 2
The log will be committed to disk after each line is written. This slows execution considerably but ensures that the log will survive a system crash.
dtsLogAppend = 4
Log data is appended to the file if it already exists.
dtsLogTruncate = 64
Truncate the currently-open log
dtsCrashLog = 0x1000
Generate a stack trace in the logFile if an unhandled exception occurs (Windows only).
Group
Enumerations