Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lihuiba committed Jun 1, 2024
1 parent ec2c547 commit 821edda
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/ci-tools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,10 @@ int init(uint64_t event_engine, uint64_t io_engine) {
INIT_EVENT_SELECT | INIT_EVENT_IOCP;
auto arg_specified = event_engine & all_engines;
LOG_INFO("argument specified: ` (`)", get_engine_names(arg_specified), arg_specified);
LOG_INFO("environment overridden: '`'", _engine_name);
LOG_INFO("environment specified: '`'", _engine_name);
if (_engine && arg_specified) {
event_engine &= ~all_engines & _engine;
event_engine &= ~all_engines | _engine;
LOG_INFO("environment overridden: ", get_engine_names(event_engine & all_engines));
}
return __photon_init(event_engine, io_engine);
}
Expand Down

0 comments on commit 821edda

Please sign in to comment.