diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-05-08 17:26:37 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-05-08 17:26:37 +0000 |
commit | 0dd7fd1b3a6276a39699a00e72289f264b7fdd4f (patch) | |
tree | a3336ed458e633bb63e38a8b3bbf3910b7974d7d /Game/Code/Classes/ULog.pas | |
parent | d9f655090a307ecc8bb3ea4a74572744090bb2d7 (diff) | |
download | usdx-0dd7fd1b3a6276a39699a00e72289f264b7fdd4f.tar.gz usdx-0dd7fd1b3a6276a39699a00e72289f264b7fdd4f.tar.xz usdx-0dd7fd1b3a6276a39699a00e72289f264b7fdd4f.zip |
- removed a windows unit reference
- added a missing "result :=" in bass error message function
- set default log-level to warn
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1068 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/Classes/ULog.pas')
-rw-r--r-- | Game/Code/Classes/ULog.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Game/Code/Classes/ULog.pas b/Game/Code/Classes/ULog.pas index ca488e7e..1d710387 100644 --- a/Game/Code/Classes/ULog.pas +++ b/Game/Code/Classes/ULog.pas @@ -37,7 +37,7 @@ const LOG_LEVEL_NONE = -1;
// define level that Log(File)Level is initialized with
- LOG_LEVEL_DEFAULT = LOG_LEVEL_INFO;
+ LOG_LEVEL_DEFAULT = LOG_LEVEL_WARN;
LOG_FILE_LEVEL_DEFAULT = LOG_LEVEL_ERROR;
type
|