12 lines
242 B
Python
12 lines
242 B
Python
# __init__.py
|
|
|
|
import logging
|
|
from datetime import datetime
|
|
|
|
# Configure logging
|
|
logging.basicConfig(
|
|
format='%(asctime)s : %(message)s',
|
|
level = logging.INFO
|
|
)
|
|
|
|
logging.info("freq-split-enhance/spectogram package has been imported.") |