Change ip error

This commit is contained in:
problematicconsumer
2024-02-20 18:49:30 +03:30
parent 874a1af13f
commit c5a4338b41
3 changed files with 17 additions and 5 deletions

View File

@@ -51,7 +51,7 @@ class IpInfoNotifier extends _$IpInfoNotifier with AppLogger {
.getCurrentIpInfo(cancelToken)
.getOrElse(
(err) {
loggy.error("error getting proxy ip info", err);
loggy.warning("error getting proxy ip info", err, StackTrace.current);
throw err;
},
).run();
@@ -111,7 +111,7 @@ class ActiveProxyNotifier extends _$ActiveProxyNotifier with AppLogger {
.read(proxyRepositoryProvider)
.urlTest(groupTag)
.getOrElse((err) {
loggy.error("error testing group", err);
loggy.warning("error testing group", err);
throw err;
}).run();
}