From c38cbd06388695ee8f8c723bc1ac8c1b8d2dac23 Mon Sep 17 00:00:00 2001 From: "Alexander \"PapaTutuWawa" Date: Tue, 12 Apr 2022 19:01:35 +0200 Subject: [PATCH] style: Fix unneeded interpolation --- lib/xmpp/connection.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xmpp/connection.dart b/lib/xmpp/connection.dart index 1f658a0e..76358267 100644 --- a/lib/xmpp/connection.dart +++ b/lib/xmpp/connection.dart @@ -292,7 +292,7 @@ class XmppConnection { /// Called when a stream ending error has occurred void _handleError(Object? error) { if (error != null) { - _log.severe("_handleError: ${error}"); + _log.severe("_handleError: $error"); } else { _log.severe("_handleError: Called with null"); }