瀏覽代碼

Improve log statement readability

Vishnu Mohandas 5 年之前
父節點
當前提交
d178b0838d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/utils/endpoint_finder.dart

+ 1 - 1
lib/utils/endpoint_finder.dart

@@ -27,7 +27,7 @@ class EndpointFinder {
           prefix += ipSplit[index] + ".";
         }
       }
-      logger.info(prefix);
+      logger.info(prefix + "*");
 
       for (int i = 1; i <= 255 && _shouldContinueSearch; i++) {
         var endpoint = prefix + i.toString();