Changed NSLogs to ITDebugLogs.
authorKent Sutherland <ksuther@ithinksw.com>
Sun, 28 Sep 2003 20:29:53 +0000 (20:29 +0000)
committerKent Sutherland <ksuther@ithinksw.com>
Sun, 28 Sep 2003 20:29:53 +0000 (20:29 +0000)
MenuController.m

index 13867ed..332e7f8 100755 (executable)
 
 - (void)rebuildSubmenus
 {
-    NSLog(@"Rebuilding all of the submenus.");
+    ITDebugLog(@"Rebuilding all of the submenus.");
     
     currentRemote = [[MainController sharedController] currentRemote];
     _currentPlaylist = [currentRemote currentPlaylistIndex];
     [_upcomingSongsMenu release];
     [_playlistsMenu release];
     [_eqMenu release];
-    NSLog(@"Beginning Rebuild of \"Song Rating\" submenu.");
+    ITDebugLog(@"Beginning Rebuild of \"Song Rating\" submenu.");
     _ratingMenu = [self ratingMenu];
-    NSLog(@"Beginning Rebuild of \"Upcoming Songs\" submenu.");
+    ITDebugLog(@"Beginning Rebuild of \"Upcoming Songs\" submenu.");
     _upcomingSongsMenu = [self upcomingSongsMenu];
-    NSLog(@"Beginning Rebuild of \"Playlists\" submenu.");
+    ITDebugLog(@"Beginning Rebuild of \"Playlists\" submenu.");
     _playlistsMenu = [self playlistsMenu];
-    NSLog(@"Beginning Rebuild of \"EQ Presets\" submenu.");
+    ITDebugLog(@"Beginning Rebuild of \"EQ Presets\" submenu.");
     _eqMenu = [self eqMenu];
-    NSLog(@"Done rebuilding all of the submenus.");
+    ITDebugLog(@"Done rebuilding all of the submenus.");
 }
 
 - (NSMenu *)ratingMenu