We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39e0e3f commit b6cd34cCopy full SHA for b6cd34c
src/panoptes/pocs/utils/service/power.py
@@ -45,7 +45,6 @@ def record_readings():
45
while True:
46
time.sleep(record_interval)
47
power_board.record(collection_name='power')
48
- power_board.logger.debug('Recorded power reading')
49
50
# Create a thread to record the readings at an interval.
51
power_thread = Thread(target=record_readings)
src/panoptes/pocs/utils/service/weather.py
@@ -55,7 +55,6 @@ def record_readings():
55
56
57
weather_station.record()
58
- weather_station.logger.debug('Recorded weather reading')
59
60
# Create a thread to record the readings at an interval
61
weather_thread = Thread(target=record_readings)
0 commit comments