Browse Source

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
tags/v0.1.0
oharboe 15 years ago
parent
commit
99fe9c819c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/jtag/dummy.c

+ 1
- 1
src/jtag/dummy.c 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;
}


Loading…
Cancel
Save