mirror of https://github.com/calzoneman/sync.git
Merge pull request #540 from lolcow/patch-1
Use absolute path for counters.log
This commit is contained in:
commit
cf67f1148f
|
@ -1,5 +1,6 @@
|
|||
var Logger = require('./logger');
|
||||
var counterLog = new Logger.Logger('counters.log');
|
||||
var path = require('path');
|
||||
var counterLog = new Logger.Logger(path.resolve(__dirname, '..', 'counters.log'));
|
||||
import os from 'os';
|
||||
import io from 'socket.io';
|
||||
import Socket from 'socket.io/lib/socket';
|
||||
|
|
Loading…
Reference in New Issue