Mercurial > libervia-backend
diff src/core/sat_main.py @ 1096:77751f5b2242
core: use of debug log instead of error when port default value is used
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 26 Jun 2014 14:59:02 +0200 |
parents | 0eefc74c346b |
children | 9ae01ccf89c1 |
line wrap: on
line diff
--- 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)