Browse Source

Improve log statement readability

Vishnu Mohandas 5 years ago
parent
commit
d178b0838d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/utils/endpoint_finder.dart

+ 1 - 1
lib/utils/endpoint_finder.dart

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