diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-04-19 16:12:18 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-04-19 16:12:18 +0000 |
commit | 698dff10499ff6bd08a7a23da3c50903216a5384 (patch) | |
tree | f90b8b9441767cba9000571982435701da0dbd77 /src | |
parent | c692c8a5e082bd02bd7dc7feb6e3f0056ea75f0b (diff) | |
download | usdx-698dff10499ff6bd08a7a23da3c50903216a5384.tar.gz usdx-698dff10499ff6bd08a7a23da3c50903216a5384.tar.xz usdx-698dff10499ff6bd08a7a23da3c50903216a5384.zip |
reduced verbose output on missing theme and song tags (info instead of warn)
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2250 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | src/base/USong.pas | 2 | ||||
-rw-r--r-- | src/base/UTexture.pas | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/base/USong.pas b/src/base/USong.pas index 07b1a6b5..597bcb46 100644 --- a/src/base/USong.pas +++ b/src/base/USong.pas @@ -931,7 +931,7 @@ begin //Check the Identifier (If Value is given) if (Length(Value) = 0) then begin - Log.LogWarn('Empty field "'+Identifier+'" in file ' + FullFileName, + Log.LogInfo('Empty field "'+Identifier+'" in file ' + FullFileName, 'TSong.ReadTXTHeader'); AddCustomTag(Identifier, ''); end diff --git a/src/base/UTexture.pas b/src/base/UTexture.pas index e477dbb1..c1334dd7 100644 --- a/src/base/UTexture.pas +++ b/src/base/UTexture.pas @@ -540,7 +540,8 @@ begin Exit; end; end; - Log.LogWarn('Unknown texture type: "' + TypeStr + '". Using default texture type "' + TextureTypeToStr(Default) + '"', 'ParseTextureType'); + Log.LogInfo('Unknown texture type: "' + TypeStr + '". Using default texture type "' + + TextureTypeToStr(Default) + '"', 'UTexture.ParseTextureType'); Result := Default; end; |