# HG changeset patch # User Goffi # Date 1403787542 -7200 # Node ID 77751f5b22420c47745dd3dcb3788be43f768f90 # Parent ef7b7dd5c5db7253d4d18b4aa8ffa576b1e68b2a core: use of debug log instead of error when port default value is used diff -r ef7b7dd5c5db -r 77751f5b2242 src/core/sat_main.py --- a/src/core/sat_main.py Thu Jun 26 14:58:25 2014 +0200 +++ b/src/core/sat_main.py Thu Jun 26 14:59:02 2014 +0200 @@ -222,7 +222,7 @@ try: port = int(self.memory.getParamA(C.FORCE_PORT_PARAM, "Connection", profile_key=profile)) except ValueError: - log.error(_("Can't parse port value, using default value")) + log.debug(_("Can't parse port value, using default value")) port = None # will use default value 5222 or be retrieved from a DNS SRV record password = yield self.memory.asyncGetParamA("Password", "Connection", profile_key=profile)