From: Kent Sutherland Date: Sun, 28 Sep 2003 20:29:53 +0000 (+0000) Subject: Changed NSLogs to ITDebugLogs. X-Git-Tag: v1.0~40 X-Git-Url: http://git.ithinksw.org/MenuTunes.git/commitdiff_plain/dde16144878c81f06c7da19d7d4432ccd397f3e0 Changed NSLogs to ITDebugLogs. --- diff --git a/MenuController.m b/MenuController.m index 13867ed..332e7f8 100755 --- a/MenuController.m +++ b/MenuController.m @@ -361,7 +361,7 @@ - (void)rebuildSubmenus { - NSLog(@"Rebuilding all of the submenus."); + ITDebugLog(@"Rebuilding all of the submenus."); currentRemote = [[MainController sharedController] currentRemote]; _currentPlaylist = [currentRemote currentPlaylistIndex]; @@ -372,15 +372,15 @@ [_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