diff --git a/client/gui_rpc_server_ops.cpp b/client/gui_rpc_server_ops.cpp
index 45d4c9b83a..a6c6652375 100644
--- a/client/gui_rpc_server_ops.cpp
+++ b/client/gui_rpc_server_ops.cpp
@@ -1195,7 +1195,6 @@ static void handle_get_app_config(GUI_RPC_CONN& grc) {
return;
}
sprintf(path, "%s/%s", p->project_dir(), APP_CONFIG_FILE_NAME);
- printf("path: %s\n", path);
int retval = read_file_string(path, s);
if (retval) {
grc.mfout.printf("app_config.xml not found\n");
diff --git a/lib/cc_config.cpp b/lib/cc_config.cpp
index bf5b513451..b8964e1f98 100644
--- a/lib/cc_config.cpp
+++ b/lib/cc_config.cpp
@@ -864,19 +864,21 @@ int APP_CONFIGS::parse_file(FILE* f, MSG_VEC& mv, LOG_FLAGS& log_flags) {
void APP_CONFIGS::write(MIOFILE& out) {
out.printf(
- " \n"
+ "\n"
);
for (unsigned int i=0; i\n"
- " %s\n"
- " %d\n"
- " %f\n"
- " %f\n"
- " %d\n"
- " %d\n"
- " \n",
+ " \n"
+ " %s\n"
+ " %d\n"
+ " \n"
+ " %f\n"
+ " %f\n"
+ " \n"
+ " %d\n"
+ " %d\n"
+ " \n",
ac.name,
ac.max_concurrent,
ac.gpu_gpu_usage,
@@ -888,13 +890,13 @@ void APP_CONFIGS::write(MIOFILE& out) {
for (unsigned int i=0; i\n"
- " %s\n"
- " %s\n"
- " %s\n"
- " %f\n"
- " %f\n"
- " \n",
+ " \n"
+ " %s\n"
+ " %s\n"
+ " %s\n"
+ " %f\n"
+ " %f\n"
+ " \n",
avc.app_name,
avc.plan_class,
avc.cmdline,
@@ -903,9 +905,9 @@ void APP_CONFIGS::write(MIOFILE& out) {
);
}
out.printf(
- " %d\n"
- " %d\n"
- " \n",
+ " %d\n"
+ " %d\n"
+ "\n",
project_max_concurrent,
report_results_immediately?1:0
);