Skip to content

Commit a7188ba

Browse files
committed
log delimiters
1 parent 6fb251e commit a7188ba

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

azure_functions_worker/bindings/meta.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def load_binding_registry() -> None:
4040
raise AttributeError('BINDING_REGISTRY is None. Sys Path:'
4141
f'{sys.path}, Sys Module: {sys.modules},'
4242
f'python-packages Path exists: '
43-
f'{os.path.exists(CUSTOMER_PACKAGES_PATH)}')
43+
f'{os.path.exists(CUSTOMER_PACKAGES_PATH)}.')
4444

4545
# The base extension supports python 3.8+
4646
if sys.version_info.minor >= BASE_EXT_SUPPORTED_PY_MINOR_VERSION:
@@ -51,11 +51,11 @@ def load_binding_registry() -> None:
5151
DEFERRED_BINDING_REGISTRY = clients.get_binding_registry()
5252
except ImportError:
5353
logger.info('Base extension not found. '
54-
f'Python version: 3.{sys.version_info.minor}'
54+
f'Python version: 3.{sys.version_info.minor}, '
5555
f'Sys path: {sys.path}, '
5656
f'Sys Module: {sys.modules}, '
5757
f'python-packages Path exists: '
58-
f'{os.path.exists(CUSTOMER_PACKAGES_PATH)}')
58+
f'{os.path.exists(CUSTOMER_PACKAGES_PATH)}.')
5959

6060

6161
def get_binding(bind_name: str,

azure_functions_worker/dispatcher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ def index_functions(self, function_path: str):
701701

702702
logger.info(
703703
'Successfully processed FunctionMetadataRequest for '
704-
'functions: %s. Deferred bindings enabled: %s', " ".join(
704+
'functions: %s. Deferred bindings enabled: %s.', " ".join(
705705
indexed_function_logs),
706706
self._functions.deferred_bindings_enabled())
707707

0 commit comments

Comments
 (0)