Skip to content

Commit 910623f

Browse files
committed
replace print with logger
1 parent 7710ae3 commit 910623f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bioimageio_colab/register_sam_service.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ async def register_service(args: dict) -> None:
394394
)
395395

396396
# This will register probes service where you can accessed via hypha or the HTTP proxy
397-
print(f"Probes registered at workspace: {workspace}")
398-
print(
397+
logger.info(f"Probes registered at workspace: {workspace}")
398+
logger.info(
399399
f"Test the liveness probe here: {args.server_url}/{workspace}/services/probes/liveness"
400400
)

0 commit comments

Comments
 (0)