Commit d5f88a40ac45dbfb32ef7b8ca6b85c495602a249
1 parent
5fddfc70
Exists in
dev
bugfix
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
src/core/pyros_django/agent/Agent.py
... | ... | @@ -1064,9 +1064,6 @@ class Agent: |
1064 | 1064 | |
1065 | 1065 | self._main_loop_end() |
1066 | 1066 | |
1067 | - log.info("*"*20 + " MAIN LOOP ITERATION (END) " + "*"*20) | |
1068 | - #self.do_log(LOG_DEBUG, "Ending main loop iteration") | |
1069 | - | |
1070 | 1067 | self._iter_num += 1 |
1071 | 1068 | |
1072 | 1069 | |
... | ... | @@ -1119,6 +1116,9 @@ class Agent: |
1119 | 1116 | |
1120 | 1117 | def _main_loop_end(self): |
1121 | 1118 | self.main_loop_end() |
1119 | + log.info("*"*20 + " MAIN LOOP ITERATION (END) " + "*"*20) | |
1120 | + #self.do_log(LOG_DEBUG, "Ending main loop iteration") | |
1121 | + | |
1122 | 1122 | # To be overriden by subclass |
1123 | 1123 | def main_loop_end(self): |
1124 | 1124 | pass | ... | ... |