Skip to content

Commit

Permalink
Add timestamp to logging
Browse files Browse the repository at this point in the history
  • Loading branch information
roquelopez committed Feb 15, 2024
1 parent bf4fe35 commit ed2d87f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion alpha_automl/automl_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
from alpha_automl.visualization import plot_comparison_pipelines
from alpha_automl.pipeline_serializer import PipelineSerializer

logging.basicConfig(level=logging.DEBUG, stream=sys.stdout)
logging.basicConfig(level=logging.DEBUG, stream=sys.stdout, format='%(levelname)s|%(asctime)s|%(message)s',
datefmt='%Y-%m-%d %H:%M:%S')
logger = logging.getLogger(__name__)

AUTOML_NAME = 'AlphaAutoML'
Expand Down

0 comments on commit ed2d87f

Please sign in to comment.