[lib] ajout des fichiers non suivis
darcs-hash:20090609134320-bd074-f4df3e57ff2a6e60f07e25cda773524c8e20de3c.gz
This commit is contained in:
parent
dce8ccb6da
commit
c2535c1f04
17 changed files with 2346 additions and 0 deletions
11
lib/scripts/helloworld.py
Normal file
11
lib/scripts/helloworld.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
|
||||
import logging
|
||||
|
||||
from crans.utils.logs import getFileLogger
|
||||
#LOGGER = logging.getLogger("crans.scripts.test")
|
||||
LOGGER = getFileLogger("helloworld")
|
||||
LOGGER.setLevel(logging.INFO)
|
||||
LOGGER.addHandler(logging.StreamHandler())
|
||||
|
||||
if __name__ == "__main__":
|
||||
LOGGER.info(u"Hello World")
|
Loading…
Add table
Add a link
Reference in a new issue