Commit 18f42aeb authored by nextime's avatar nextime

Fixed missing loggind module in status parser module

parent 77724a8f
...@@ -1388,6 +1388,7 @@ class domotikaService(service.Service): ...@@ -1388,6 +1388,7 @@ class domotikaService(service.Service):
interval=int(pinterval), replay=int(preplay), engine=str(engine)) interval=int(pinterval), replay=int(preplay), engine=str(engine))
elif command.startswith("PHONEPLAY ") or command.startswith("PHONEPLAY:"): elif command.startswith("PHONEPLAY ") or command.startswith("PHONEPLAY:"):
# XXX BUG! if you use : conflict with options and doesn't work!
command=command[10:] command=command[10:]
pfile=command.split()[0] pfile=command.split()[0]
popts=command.split()[1] popts=command.split()[1]
......
...@@ -26,6 +26,9 @@ from dmlib.utils import genutils ...@@ -26,6 +26,9 @@ from dmlib.utils import genutils
from twisted.internet import defer from twisted.internet import defer
from db import dmdb from db import dmdb
from dmlib import dmdomain from dmlib import dmdomain
import logging, sys, os
log = logging.getLogger( 'Core' )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment