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, 3 insertions, 0 deletions
diff --git a/behaviors/DebugBehavior.py b/behaviors/DebugBehavior.py
index 17383db..8f81954 100644
--- a/behaviors/DebugBehavior.py
+++ b/behaviors/DebugBehavior.py
@@ -2,6 +2,9 @@ from operationscore.Behavior import *
from logger import main_log
import pdb
class DebugBehavior(Behavior):
+ """DebugBehavior simply writes all of its inputs to the logs, currently at the ERROR level for
+ easy visibility. Will be changed to DEBUG or INFO in the future"""
+
def processResponse(self, sensorInputs, recursiveInputs):
if sensorInputs != []:
main_log.error('Sensor Inputs: ' + str(sensorInputs))