LoginSignup
2
2

More than 3 years have passed since last update.

python ログを出す

Posted at

メインのファイル

main.py
from flask import Flask
from logging import basicConfig, INFO

app = Flask(__name__)
basicConfig(level=INFO)

ログを出したいファイル

from logging import getLogger

logger = getLogger(__name__)

def sample_method:
    logger.info('Hey.')
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2