omega_dio_logger 1.0.1 omega_dio_logger: ^1.0.1 copied to clipboard
Dio interceptor that logs network calls in a pretty, easy to read format with curl command
Omega Dio logger #
Omega Dio logger is a Dio interceptor that logs network calls in easy to read format with curl command
Usage #
Install #
Add OmegaDioLogger to your Dio interceptors:
final dio = Dio();
dio.interceptors.add(const OmegaDioLogger());
// or customize
dio.interceptors.add(
const OmegaDioLogger(
logPrint: log,
convertFormData: true,
showError: true,
showRequest: true,
showRequestBody: true,
showRequestHeaders: true,
showRequestQueryParameters: true,
showResponse: true,
showResponseBody: true,
showResponseHeaders: true,
showCurl: true,
showLog: kDebugMode,
),
);