1
0
mirror of https://github.com/gsi-upm/soil synced 2024-11-14 15:32:29 +00:00

Logs fixed

This commit is contained in:
Tasio Mendez 2018-04-16 11:17:15 +02:00
parent 788af57da2
commit 6548254fe1

View File

@ -89,7 +89,7 @@ class SocketHandler(tornado.websocket.WebSocketHandler):
elif msg['type'] == 'get_trial':
if self.application.verbose:
logger.info('Trial {} requested!'.format(msg['data']))
self.send_log('INFO.user', 'Trial {} requested!'.format(msg['data']))
self.send_log('INFO.' + __name__, 'Trial {} requested!'.format(msg['data']))
self.write_message({'type': 'get_trial',
'data': self.get_trial( int(msg['data']) ) })
@ -154,16 +154,16 @@ class SocketHandler(tornado.websocket.WebSocketHandler):
with self.logging(self.application.simulator.name):
try:
self.simulation = self.application.simulator.run(self.config)
except:
error = 'Something went wrong. Please, try again.'
self.write_message({'type': 'error',
'error': error})
trials = []
for i in range(self.config['num_trials']):
trials.append('{}_trial_{}'.format(self.name, i))
self.write_message({'type': 'trials',
'data': trials })
except:
error = 'Something went wrong. Please, try again.'
self.write_message({'type': 'error',
'error': error})
self.send_log('ERROR.' + self.application.simulator.name, error)
def get_trial(self, trial):
G = self.simulation[trial].history_to_graph()