Skip to content

Commit 3197d57

Browse files
committed
update default logger to INFO
I've notice my log contains a lot of information regarding OCPP This PR suggest to reduce the amount of logs for a regular HA environment.
1 parent b6972b2 commit 3197d57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_components/ocpp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
)
2929

3030
_LOGGER: logging.Logger = logging.getLogger(__package__)
31-
logging.getLogger(DOMAIN).setLevel(logging.DEBUG)
31+
logging.getLogger(DOMAIN).setLevel(logging.INFO)
3232

3333
AUTH_LIST_SCHEMA = vol.Schema(
3434
{

0 commit comments

Comments
 (0)