aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Game/Code/Classes/UMain.pas2
-rw-r--r--Game/Code/Classes/USongs.pas4
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;