start static method
Implementation
static Future<bool> start(StepLoggerConfig config) async {
try {
if (!await isRunning()) {
await initialize(config);
await _service.startService();
}
return true;
} catch (e) {
return false;
}
}