Skip to content

Commit

Permalink
Replace print statement by logging.debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Bachibouzouk committed Jun 28, 2024
1 parent ebe5963 commit a1ba99f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/projects/forms.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import logging
import pickle
import os
import json
Expand Down Expand Up @@ -85,7 +86,7 @@ def set_parameter_info(param_name, field, parameters=PARAMETERS):
if default_value == "None":
default_value = None
else:
print(f"{param_name} not in the parameters file")
logging.debug(f"{param_name} not in the parameters file")

if verbose is not None:
field.label = verbose
Expand Down

0 comments on commit a1ba99f

Please sign in to comment.