[core] setup low-level logging

This commit is contained in:
Yann Lanthony 2018-04-13 20:42:44 +02:00
parent 58bd363368
commit 7da3f36442

View file

@ -7,10 +7,13 @@ import os
import re
import tempfile
import uuid
import logging
from meshroom.core.submitter import BaseSubmitter
from . import desc
# Setup logging
logging.basicConfig(format='[%(asctime)s][%(levelname)s] %(message)s', level=logging.INFO)
# make a UUID based on the host ID and current time
sessionUid = str(uuid.uuid1())