Skip to content

Commit 309d467

Browse files
author
Evan Roman
committed
fix
1 parent 6d97f9a commit 309d467

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

azure/functions/_jsonutils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from abc import ABC, abstractmethod
2+
import logging
23
from typing import Any, Union
34
from types import SimpleNamespace
45

@@ -40,6 +41,7 @@ def loads(self, s: Union[str, bytes, bytearray]) -> Any:
4041

4142
try:
4243
json_impl: JsonInterface = OrJsonAdapter()
44+
logging.info("Using orjson as the JSON backend")
4345
except ImportError:
4446
json_impl = StdJsonAdapter()
4547

0 commit comments

Comments
 (0)