Skip to content

Commit 10becbb

Browse files
RobertLuciandeliahu
authored andcommitted
Use info log level when TF model is still loading (#1171)
(cherry picked from commit bf19cff)
1 parent cebacd8 commit 10becbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/workloads/cortex/lib/server/tensorflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def add_models_config(self, names, base_paths, replace_models=False):
5656
def log_loading_models():
5757
while not loaded_models.is_set():
5858
time.sleep(2)
59-
cx_logger().warn("model(s) still loading ...")
59+
cx_logger().info("model(s) still loading ...")
6060

6161
log_thread = threading.Thread(target=log_loading_models, daemon=True)
6262
log_thread.start()

0 commit comments

Comments
 (0)