comment out latency debug output

git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3343 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2008-05-13 13:46:18 +00:00
parent 4e52f281a4
commit 02de669c51
5 changed files with 6 additions and 4 deletions

View file

@ -813,6 +813,8 @@ ARDOUR_UI::ask_about_saving_session (const string & what)
int
ARDOUR_UI::every_second ()
{
return TRUE;
update_cpu_load ();
update_buffer_load ();
update_disk_space ();

View file

@ -2418,7 +2418,7 @@ Route::update_total_latency ()
}
}
#define DEBUG_LATENCY
#undef DEBUG_LATENCY
#ifdef DEBUG_LATENCY
cerr << _name << ": internal redirect latency = " << _own_latency << endl;
#endif

View file

@ -1258,7 +1258,7 @@ Session::update_latency_compensation (bool with_stop, bool abort)
_worst_track_latency = 0;
#define DEBUG_LATENCY
#undef DEBUG_LATENCY
#ifdef DEBUG_LATENCY
cerr << "\n---------------------------------\nUPDATE LATENCY\n";
#endif

View file

@ -102,7 +102,7 @@ Track::update_total_latency ()
}
}
#define DEBUG_LATENCY
#undef DEBUG_LATENCY
#ifdef DEBUG_LATENCY
cerr << _name << ": internal redirect (final) latency = " << _own_latency << endl;
#endif

View file

@ -1,4 +1,4 @@
#ifndef __ardour_svn_revision_h__
#define __ardour_svn_revision_h__
static const char* ardour_svn_revision = "3201";
static const char* ardour_svn_revision = "3243";
#endif