12 lines
255 B
Python
12 lines
255 B
Python
import logging
|
|
from typing import Any
|
|
|
|
logger = logging.getLogger('AppDaemon.Perimeter')
|
|
|
|
|
|
class HAL:
|
|
def __init__(self, *args: Any, **kwargs: Any) -> None:
|
|
self.args = args
|
|
self.kwargs = kwargs
|
|
logger.info('Logging from HAL')
|