svf progress would dump out debug information:

do_one_queued abort
do_one_queued
do_one_queued done
...

Signed-off-by: Øyvind Harboe <oyvind.har...@zylin.com>
---
 urjtag/src/tap/cable/generic.c |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/urjtag/src/tap/cable/generic.c b/urjtag/src/tap/cable/generic.c
index c8e9c85..34c05d7 100644
--- a/urjtag/src/tap/cable/generic.c
+++ b/urjtag/src/tap/cable/generic.c
@@ -88,7 +88,7 @@ do_one_queued_action (urj_cable_t *cable)
 {
     int i;
 
-    urj_log (URJ_LOG_LEVEL_DETAIL, "do_one_queued\n");
+    urj_log (URJ_LOG_LEVEL_DEBUG, "do_one_queued\n");
 
     if ((i = urj_tap_cable_get_queue_item (cable, &cable->todo)) >= 0)
     {
@@ -136,7 +136,7 @@ do_one_queued_action (urj_cable_t *cable)
                 {
                     /* @@@@ RFHH check result */
                     j = urj_tap_cable_add_queue_item (cable, &cable->done);
-                    urj_log (URJ_LOG_LEVEL_DETAIL,
+                    urj_log (URJ_LOG_LEVEL_DEBUG,
                              "add result from transfer to %p.%d (out=%p)\n",
                              &cable->done, j,
                              cable->todo.data[i].arg.transfer.out);
@@ -152,7 +152,7 @@ do_one_queued_action (urj_cable_t *cable)
         case URJ_TAP_CABLE_GET_TDO:
             /* @@@@ RFHH check result */
             j = urj_tap_cable_add_queue_item (cable, &cable->done);
-            urj_log (URJ_LOG_LEVEL_DETAIL,
+            urj_log (URJ_LOG_LEVEL_DEBUG,
                      "add result from get_tdo to %p.%d\n", &cable->done, j);
             cable->done.data[j].action = URJ_TAP_CABLE_GET_TDO;
             cable->done.data[j].arg.value.val =
@@ -161,7 +161,7 @@ do_one_queued_action (urj_cable_t *cable)
         case URJ_TAP_CABLE_GET_SIGNAL:
             /* @@@@ RFHH check result */
             j = urj_tap_cable_add_queue_item (cable, &cable->done);
-            urj_log (URJ_LOG_LEVEL_DETAIL,
+            urj_log (URJ_LOG_LEVEL_DEBUG,
                      "add result from get_signal to %p.%d\n", &cable->done,
                      j);
             cable->done.data[j].action = URJ_TAP_CABLE_GET_SIGNAL;
@@ -174,11 +174,11 @@ do_one_queued_action (urj_cable_t *cable)
         case URJ_TAP_CABLE_CLOCK_COMPACT: /* Turn off GCC warning */
             break;
         }
-        urj_log (URJ_LOG_LEVEL_DETAIL, "do_one_queued done\n");
+        urj_log (URJ_LOG_LEVEL_DEBUG, "do_one_queued done\n");
 
         return 1;
     }
-    urj_log (URJ_LOG_LEVEL_DETAIL, "do_one_queued abort\n");
+    urj_log (URJ_LOG_LEVEL_DEBUG, "do_one_queued abort\n");
 
     return 0;
 }
-- 
1.7.0.4


------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
UrJTAG-development mailing list
UrJTAG-development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/urjtag-development

Reply via email to