forked from Tencent/LuaPanda
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
749a2fa
commit 9068d18
Showing
2 changed files
with
18 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// 在这个文件中进行调试器的相关配置 | ||
|
||
export enum LogLevel{ | ||
DEBUG = 0, | ||
INFO = 1 , | ||
ERROR = 2, | ||
RELEASE = 3 | ||
} | ||
|
||
export class CodeSettings{ | ||
public static logLevel = LogLevel.RELEASE; | ||
// 调试的时候,为了方便查看信息,这里设置true . 发布版本改为 false | ||
public static isOpenDebugInfo = false; | ||
} |