From 9dd0295cfec65c0cb0ea9369023a93e4092116c9 Mon Sep 17 00:00:00 2001 From: Francesc Alted Date: Mon, 23 Oct 2023 13:23:56 +0200 Subject: [PATCH] Do not print info when models are found --- src/btune_model.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/btune_model.cpp b/src/btune_model.cpp index 6aff579..7105cad 100644 --- a/src/btune_model.cpp +++ b/src/btune_model.cpp @@ -317,7 +317,7 @@ static void * load_model(btune_config * config, const char * dirname) { return NULL; } free(model_fname); - printf("INFO: Model files found in the '%s' directory\n", dirname); + //printf("INFO: Model files found in the '%s' directory\n", dirname); // Build the interpreter with the InterpreterBuilder. // Note: all Interpreters should be built with the InterpreterBuilder,