diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-05-08 18:41:11 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-05-08 18:41:11 +0000 |
commit | c0d61a8aea70cdb17fbcb9456cf5a42a38eeedbb (patch) | |
tree | a42721becb2d5ea6c316453788f617951f9688a5 | |
parent | 2a708a74d0a2e9a26caeb6bacf9f252102c89326 (diff) | |
download | usdx-c0d61a8aea70cdb17fbcb9456cf5a42a38eeedbb.tar.gz usdx-c0d61a8aea70cdb17fbcb9456cf5a42a38eeedbb.tar.xz usdx-c0d61a8aea70cdb17fbcb9456cf5a42a38eeedbb.zip |
set some non-error logs from error to status
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1071 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | Game/Code/Classes/UMain.pas | 2 | ||||
-rw-r--r-- | Game/Code/Classes/USongs.pas | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Game/Code/Classes/UMain.pas b/Game/Code/Classes/UMain.pas index 52f78ae9..39265a6d 100644 --- a/Game/Code/Classes/UMain.pas +++ b/Game/Code/Classes/UMain.pas @@ -1088,7 +1088,7 @@ procedure InitializePaths; end; if not lWriteable then - Log.LogError('Error: Dir ('+ aLocation +') is Readonly'); + Log.LogError('Dir ('+ aLocation +') is Readonly', 'initialize_path'); result := lWriteable; end; diff --git a/Game/Code/Classes/USongs.pas b/Game/Code/Classes/USongs.pas index dfe79c97..64fd3440 100644 --- a/Game/Code/Classes/USongs.pas +++ b/Game/Code/Classes/USongs.pas @@ -200,7 +200,7 @@ begin try fProcessing := true; - Log.LogError('SongList', 'Searching For Songs'); + Log.LogStatus('Searching For Songs', 'SongList'); // browse directories BrowseDir(SongPath); @@ -224,7 +224,7 @@ begin end; finally - Log.LogError('SongList', 'Search Complete'); + Log.LogStatus('Search Complete', 'SongList'); fParseSongDirectory := false; fProcessing := false; |