diff --git a/chopper/lib/src/http_logging_interceptor.dart b/chopper/lib/src/http_logging_interceptor.dart index f59f1c54..73bc9654 100644 --- a/chopper/lib/src/http_logging_interceptor.dart +++ b/chopper/lib/src/http_logging_interceptor.dart @@ -171,7 +171,5 @@ class HttpLoggingInterceptor return response; } - void writeLine(String message) { - chopperLogger.info(message); - } + void writeLine(String message) => chopperLogger.info(message); }