Documentation
Table of contents

LogMode

LogMode describes the logging modes.

  • Android
  • Objective-C
  • Swift
public @interface EnumLogMode
{
    public static final int LGM_CONSOLE = 1;
    public static final int LGM_FILE = 2;
}
typedef NS_ENUM(NSInteger, DSLogMode)
{
    /**
     * Output the log information in the console.
     */
    DSLogModeConsole = 1,
    /**
     * Output the log information to a log file.
     */
    DSLogModeFile = 2,
};
public enum LogMode : Int
{
   /**
    * Output the log information in the console.
    */
   console = 0x01
   /**
    * Output the log information to a log file.
    */
   file = 0x02
};

This page is compatible for:

Version 1.0

Is this page helpful?

YesYes NoNo

In this article:

latest version

    • Latest version (2.2.20)
    • Version 2.x
      • Version 2.2.10
      • Version 2.2.0
      • Version 2.0.30
      • Version 2.0.20
      • Version 2.0.10
      • Version 2.0.0
    Change +
    © 2003–2024 Dynamsoft. All rights reserved.
    Privacy Statement / Site Map / Home / Purchase / Support