From 476a7b92f18a2ce682997af0290c2258eb571580 Mon Sep 17 00:00:00 2001 From: Veniamin Malefioudakis <58257722+benmalef@users.noreply.github.com> Date: Wed, 14 Aug 2024 23:38:55 +0300 Subject: [PATCH] Update docs/extending.md Co-authored-by: Sarthak Pati --- docs/extending.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/extending.md b/docs/extending.md index a9cd965bb..929efa515 100644 --- a/docs/extending.md +++ b/docs/extending.md @@ -143,7 +143,8 @@ def my_new_cool_function(df: pd.DataFrame): logging.debug("Message for debug file only") logging.info("Hi GaNDLF user, I greet you in the CLI output") logging.error(f"A detailed message about any error if needed. Exception: {str(e)}, params: {params}, df shape: {df.shape}") - # print("Hi GaNDLF user!") # don't use prints please. + # do NOT use normal print statements + # print("Hi GaNDLF user!") ``` Here is an example how logger can be used: