File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -131,19 +131,19 @@ message_queue *attach_pfctl_queue() {
131
131
continue ;
132
132
} else {
133
133
log (MessageType::MSG_INFO,
134
- fmt::sprintf (" pfctl_worker: Interprocess Exception while "
135
- " waiting for queue %d " ,
136
- ex.get_error_code ()));
134
+ fmt::sprintf (" pfctl_worker: Interprocess Exception %d "
135
+ " while waiting for queue" ,
136
+ int ( ex.get_error_code () )));
137
137
}
138
138
} catch (const runtime_error &ex) {
139
139
// speciffic handling for runtime_error
140
140
log (MessageType::MSG_INFO,
141
- fmt::sprintf (" pfctl_worker: Exception while waiting for queue %s " ,
141
+ fmt::sprintf (" pfctl_worker: Exception %s while waiting for queue" ,
142
142
ex.what ()));
143
143
} catch (const exception &ex) {
144
144
// std::runtime_error which is handled explicitly
145
145
log (MessageType::MSG_INFO,
146
- fmt::sprintf (" pfctl_worker: Exception while waiting for queue %s " ,
146
+ fmt::sprintf (" pfctl_worker: Exception %s while waiting for queue" ,
147
147
ex.what ()));
148
148
}
149
149
break ;
You can’t perform that action at this time.
0 commit comments