@@ -91,7 +91,7 @@ void System::parseArgs(const int argc, const char *const *const argv)
91
91
config.log_level_brakes = *log_level;
92
92
} else {
93
93
kInitialisationErrorLogger .info (
94
- " could not find field 'system.log_level_brakes' in config filet at %s; using default value" ,
94
+ " could not find field 'system.log_level_brakes' in config file at %s; using default value" ,
95
95
argv[1 ]);
96
96
config.log_level_brakes = config.log_level ;
97
97
}
@@ -107,7 +107,7 @@ void System::parseArgs(const int argc, const char *const *const argv)
107
107
config.log_level_navigation = *log_level;
108
108
} else {
109
109
kInitialisationErrorLogger .info (
110
- " could not find field 'system.log_level_navigation' in config filet at %s; using default "
110
+ " could not find field 'system.log_level_navigation' in config file at %s; using default "
111
111
" value" ,
112
112
argv[1 ]);
113
113
config.log_level_navigation = config.log_level ;
@@ -124,7 +124,7 @@ void System::parseArgs(const int argc, const char *const *const argv)
124
124
config.log_level_propulsion = *log_level;
125
125
} else {
126
126
kInitialisationErrorLogger .info (
127
- " could not find field 'system.log_level_propulsion' in config filet at %s; using default "
127
+ " could not find field 'system.log_level_propulsion' in config file at %s; using default "
128
128
" value" ,
129
129
argv[1 ]);
130
130
config.log_level_propulsion = config.log_level ;
@@ -141,7 +141,7 @@ void System::parseArgs(const int argc, const char *const *const argv)
141
141
config.log_level_sensors = *log_level;
142
142
} else {
143
143
kInitialisationErrorLogger .info (
144
- " could not find field 'system.log_level_sensors' in config filet at %s; using default value" ,
144
+ " could not find field 'system.log_level_sensors' in config file at %s; using default value" ,
145
145
argv[1 ]);
146
146
config.log_level_sensors = config.log_level ;
147
147
}
@@ -157,7 +157,7 @@ void System::parseArgs(const int argc, const char *const *const argv)
157
157
config.log_level_state_machine = *log_level;
158
158
} else {
159
159
kInitialisationErrorLogger .info (
160
- " could not find field 'system.log_level_state_machine' in config filet at %s; using default "
160
+ " could not find field 'system.log_level_state_machine' in config file at %s; using default "
161
161
" value" ,
162
162
argv[1 ]);
163
163
config.log_level_state_machine = config.log_level ;
@@ -174,7 +174,7 @@ void System::parseArgs(const int argc, const char *const *const argv)
174
174
config.log_level_telemetry = *log_level;
175
175
} else {
176
176
kInitialisationErrorLogger .info (
177
- " could not find field 'system.log_level_telemetry' in config filet at %s; using default "
177
+ " could not find field 'system.log_level_telemetry' in config file at %s; using default "
178
178
" value" ,
179
179
argv[1 ]);
180
180
config.log_level_telemetry = config.log_level ;
@@ -199,7 +199,7 @@ void System::parseArgs(const int argc, const char *const *const argv)
199
199
config.use_fake_trajectory = config_object[" use_fake_trajectory" ].GetBool ();
200
200
} else {
201
201
kInitialisationErrorLogger .info (
202
- " could not find field 'system.use_fake_trajectory' in config filet at %s; using default "
202
+ " could not find field 'system.use_fake_trajectory' in config file at %s; using default "
203
203
" value" ,
204
204
argv[1 ]);
205
205
config.use_fake_trajectory = false ;
@@ -209,7 +209,7 @@ void System::parseArgs(const int argc, const char *const *const argv)
209
209
config.use_fake_batteries = config_object[" use_fake_batteries" ].GetBool ();
210
210
} else {
211
211
kInitialisationErrorLogger .info (
212
- " could not find field 'system.use_fake_batteries' in config filet at %s; using default "
212
+ " could not find field 'system.use_fake_batteries' in config file at %s; using default "
213
213
" value" ,
214
214
argv[0 ]);
215
215
config.use_fake_batteries = false ;
@@ -219,7 +219,7 @@ void System::parseArgs(const int argc, const char *const *const argv)
219
219
config.use_fake_batteries_fail = config_object[" use_fake_batteries_fail" ].GetBool ();
220
220
} else {
221
221
kInitialisationErrorLogger .info (
222
- " could not find field 'system.use_fake_batteries_fail' in config filet at %s; using default "
222
+ " could not find field 'system.use_fake_batteries_fail' in config file at %s; using default "
223
223
" value" ,
224
224
argv[0 ]);
225
225
config.use_fake_batteries_fail = false ;
@@ -229,7 +229,7 @@ void System::parseArgs(const int argc, const char *const *const argv)
229
229
config.use_fake_temperature = config_object[" use_fake_temperature" ].GetBool ();
230
230
} else {
231
231
kInitialisationErrorLogger .info (
232
- " could not find field 'system.use_fake_temperature' in config filet at %s; using default "
232
+ " could not find field 'system.use_fake_temperature' in config file at %s; using default "
233
233
" value" ,
234
234
argv[0 ]);
235
235
config.use_fake_temperature = false ;
@@ -239,7 +239,7 @@ void System::parseArgs(const int argc, const char *const *const argv)
239
239
config.use_fake_temperature_fail = config_object[" use_fake_temperature_fail" ].GetBool ();
240
240
} else {
241
241
kInitialisationErrorLogger .info (
242
- " could not find field 'system.use_fake_temperature_fail' in config filet at %s; using "
242
+ " could not find field 'system.use_fake_temperature_fail' in config file at %s; using "
243
243
" default "
244
244
" value" ,
245
245
argv[0 ]);
@@ -251,7 +251,7 @@ void System::parseArgs(const int argc, const char *const *const argv)
251
251
config.use_fake_ambient_pressure = config_object[" use_fake_ambient_pressure" ].GetBool ();
252
252
} else {
253
253
kInitialisationErrorLogger .info (
254
- " could not find field 'system.use_fake_ambient_pressure' in config filet at %s; using "
254
+ " could not find field 'system.use_fake_ambient_pressure' in config file at %s; using "
255
255
" default "
256
256
" value" ,
257
257
argv[0 ]);
@@ -263,7 +263,7 @@ void System::parseArgs(const int argc, const char *const *const argv)
263
263
= config_object[" use_fake_ambient_pressure_fail" ].GetBool ();
264
264
} else {
265
265
kInitialisationErrorLogger .info (
266
- " could not find field 'system.use_fake_ambient_pressure_fail' in config filet at %s; using "
266
+ " could not find field 'system.use_fake_ambient_pressure_fail' in config file at %s; using "
267
267
" default "
268
268
" value" ,
269
269
argv[0 ]);
@@ -275,7 +275,7 @@ void System::parseArgs(const int argc, const char *const *const argv)
275
275
config.use_fake_brake_pressure = config_object[" use_fake_brake_pressure" ].GetBool ();
276
276
} else {
277
277
kInitialisationErrorLogger .info (
278
- " could not find field 'system.use_fake_brake_pressure' in config filet at %s; using "
278
+ " could not find field 'system.use_fake_brake_pressure' in config file at %s; using "
279
279
" default "
280
280
" value" ,
281
281
argv[0 ]);
@@ -286,7 +286,7 @@ void System::parseArgs(const int argc, const char *const *const argv)
286
286
config.use_fake_ambient_pressure_fail = config_object[" use_fake_brake_pressure_fail" ].GetBool ();
287
287
} else {
288
288
kInitialisationErrorLogger .info (
289
- " could not find field 'system.use_fake_brake_pressure_fail' in config filet at %s; using "
289
+ " could not find field 'system.use_fake_brake_pressure_fail' in config file at %s; using "
290
290
" default "
291
291
" value" ,
292
292
argv[0 ]);
@@ -298,7 +298,7 @@ void System::parseArgs(const int argc, const char *const *const argv)
298
298
config.use_fake_brakes = config_object[" use_fake_brakes" ].GetBool ();
299
299
} else {
300
300
kInitialisationErrorLogger .info (
301
- " could not find field 'system.use_fake_brakes' in config filet at %s; using default "
301
+ " could not find field 'system.use_fake_brakes' in config file at %s; using default "
302
302
" value" ,
303
303
argv[0 ]);
304
304
config.use_fake_brakes = false ;
@@ -308,7 +308,7 @@ void System::parseArgs(const int argc, const char *const *const argv)
308
308
config.use_fake_controller = config_object[" use_fake_controller" ].GetBool ();
309
309
} else {
310
310
kInitialisationErrorLogger .info (
311
- " could not find field 'system.use_fake_controller' in config filet at %s; using default "
311
+ " could not find field 'system.use_fake_controller' in config file at %s; using default "
312
312
" value" ,
313
313
argv[0 ]);
314
314
config.use_fake_controller = false ;
0 commit comments