Changeset - e6ae7bfc12f2
[Not reviewed]
default
0 2 0
drewp@bigasterisk.com - 20 months ago 2023-05-24 03:08:24
drewp@bigasterisk.com
logging adjustments
2 files changed with 6 insertions and 4 deletions:
0 comments (0 inline, 0 general)
light9/effect/effecteval.py
Show inline comments
 
@@ -104,7 +104,6 @@ class EffectEval2:
 
            if ea==L9['strength']:
 
                s = v
 

	
 
        print('scaled to', effect_scale(s, self.devs))
 
        return effect_scale(s,self.devs )
 

	
 
        return self.function(inputs)
light9/rdfdb/service.py
Show inline comments
 
@@ -2,12 +2,16 @@ import logging
 
import os
 
from pathlib import Path
 

	
 
from light9.run_local import log
 

	
 
import rdfdb.service
 
from rdflib import URIRef
 

	
 
from light9 import showconfig
 
from light9.run_local import log
 

	
 
logging.getLogger('rdfdb').setLevel(logging.INFO)
 
logging.getLogger('rdfdb.file').setLevel(logging.INFO)
 
logging.getLogger('rdfdb.graph').setLevel(logging.INFO)
 
logging.getLogger('rdfdb.net').setLevel(logging.DEBUG)
 
rdfRoot = Path(os.environ['LIGHT9_SHOW'].rstrip('/') + '/')
 
showUri = URIRef(showconfig.showUri() + '/')
 

	
 
@@ -22,4 +26,3 @@ app = rdfdb.service.makeApp(  #
 
        'effect': URIRef('http://light9.bigasterisk.com/effect/'),
 
        'dev': URIRef('http://light9.bigasterisk.com/theater/skyline/device/'),
 
    })
 
log.info('made app')
 
\ No newline at end of file
0 comments (0 inline, 0 general)