bumped a LOG_INFO to LOG_DEBUG level to reduce excessive output for normal execution

git-svn-id: svn://svn.berlios.de/openocd/trunk@1265 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
oharboe 2008-12-22 10:27:53 +00:00
parent 3805e53fd8
commit 99fe9c819c

View File

@ -90,7 +90,7 @@ void dummy_write(int tck, int tms, int tdi)
int old_state = dummy_state;
dummy_state = tap_state_transition( dummy_state, tms );
if( old_state != dummy_state )
LOG_INFO( "dummy_tap=%s", jtag_state_name(dummy_state) );
LOG_DEBUG( "dummy_tap=%s", jtag_state_name(dummy_state) );
}
dummy_clock = tck;
}