log version

This commit is contained in:
Jan Gerber 2015-03-22 19:34:42 +05:30
parent 193671be5c
commit ce47b8a64d
2 changed files with 8 additions and 2 deletions

View File

@ -26,6 +26,8 @@ import websocket
import logging
logger = logging.getLogger('oml')
class MainHandler(OMLHandler):
def get(self, path):
@ -111,6 +113,7 @@ def run():
host = settings.server['address']
url = 'http://%s:%s/' % (host, settings.server['port'])
print('open browser at %s' % url)
logger.debug('Starting OML %s at %s', settings.VERSION, url)
def shutdown():
if state.downloads:

View File

@ -121,8 +121,11 @@ oml.ui.transfersDialog = function() {
});
oml.bindEvent({
transfer: Ox.throttle(function() {
$list.reloadList(true);
transfer: Ox.throttle(function(data) {
var current = $list.value(data.id);
if (!Ox.isEmpty(current) && current.progress != data.progress) {
$list.value(data.id, 'progress', data.progress);
}
}, 1000)
});