move all core use of "debug" to use "trace" instead (or almost all of them)
[catagits/Catalyst-Runtime.git] / lib / Catalyst / DispatchType / Chained.pm
index 05fc514..dc876f6 100644 (file)
@@ -144,8 +144,8 @@ sub list {
         $paths->row(@$_) for @rows;
     }
 
-    $c->log->debug( "Loaded Chained actions:\n" . $paths->draw . "\n" );
-    $c->log->debug( "Unattached Chained actions:\n", $unattached_actions->draw . "\n" )
+    $c->trace(1, "Loaded Chained actions:\n" . $paths->draw . "\n" );
+    $c->trace(1, "Unattached Chained actions:\n", $unattached_actions->draw . "\n" )
         if $has_unattached_actions;
 }