core: Remove/clean up some unhelpful logging. #124
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 31m9s

This commit is contained in:
2025-07-27 14:06:46 -04:00
parent 38fe88aab8
commit 662112551a
3 changed files with 10 additions and 7 deletions

View File

@@ -1442,7 +1442,7 @@ static int _tf_run_task(const tf_run_args_t* args, int index)
int result = -1;
tf_task_t* task = tf_task_create();
tf_task_set_trusted(task, true);
tf_printf("setting zip path to %s\n", args->zip);
tf_printf("Zip path: %s\n", args->zip);
tf_task_set_zip_path(task, args->zip);
tf_task_set_ssb_network_key(task, args->network_key);
tf_task_set_args(task, args->args);
@@ -1487,7 +1487,7 @@ static int _tf_run_task(const tf_run_args_t* args, int index)
break;
}
}
tf_printf("Using %s as the working directory.\n", cwd);
tf_printf("Root path: %s\n", cwd);
}
if (!*cwd)
{