aboutsummaryrefslogtreecommitdiff
path: root/behaviors/DebugBehavior.py
diff options
context:
space:
mode:
Diffstat (limited to 'behaviors/DebugBehavior.py')
-rw-r--r--behaviors/DebugBehavior.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/behaviors/DebugBehavior.py b/behaviors/DebugBehavior.py
index a00346b..2f8db80 100644
--- a/behaviors/DebugBehavior.py
+++ b/behaviors/DebugBehavior.py
@@ -1,7 +1,8 @@
from operationscore.Behavior import *
+from logger import main_log
import pdb
class DebugBehavior(Behavior):
def processResponse(self, sensorInputs, recursiveInputs):
if sensorInputs != []:
- print 'Sensor Inputs: ', sensorInputs
+ main_log.debug('Sensor Inputs: ', sensorInputs)
return []