From 814392daa5d1aadaae98a144cf52b0d1b72cbb19 Mon Sep 17 00:00:00 2001
From: xBelladonna <isabelladonnamoore@outlook.com>
Date: Wed, 15 Jan 2020 07:48:47 +0930
Subject: [PATCH] Add port onto paw-gps IP in logs for clarity We show ip:port
 instead of just ip in logs to avoid confusion

Signed-off-by: xBelladonna <isabelladonnamoore@users.noreply.github.com>
---
 pwnagotchi/plugins/default/paw-gps.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pwnagotchi/plugins/default/paw-gps.py b/pwnagotchi/plugins/default/paw-gps.py
index e92805b..58d257e 100644
--- a/pwnagotchi/plugins/default/paw-gps.py
+++ b/pwnagotchi/plugins/default/paw-gps.py
@@ -18,7 +18,7 @@ class PawGPS(plugins.Plugin):
     def on_loaded(self):
         logging.info("PAW-GPS loaded")
         if 'ip' not in self.options or ('ip' in self.options and self.options['ip'] is None):
-            logging.info("PAW-GPS: No IP Address in the config file is defined, it uses the default (192.168.44.1)")
+            logging.info("PAW-GPS: No IP Address in the config file is defined, it uses the default (192.168.44.1:8080)")
 
     def on_handshake(self, agent, filename, access_point, client_station):
         if 'ip' not in self.options or ('ip' in self.options and self.options['ip'] is None):