Fix non-thread-safe logging call

This commit is contained in:
Akash Levy 2025-11-09 15:45:33 -08:00
parent d5049ee8cf
commit 3dc4cf3dd7
1 changed files with 1 additions and 1 deletions

View File

@ -1360,7 +1360,7 @@ void RunAbcState::run(ConcurrentStack<AbcProcess> &process_pool)
did_run = true;
return;
}
log("Don't call ABC as there is nothing to map.\n");
logs.log("Don't call ABC as there is nothing to map.\n");
}
void emit_global_input_files(const AbcConfig &config)