diff --git a/osmclient/cli_commands/other.py b/osmclient/cli_commands/other.py index b51a8689f7986368dbf8715c279c34ec85c13982..d2ce70f824c7b56219a48878952107effbc43642 100755 --- a/osmclient/cli_commands/other.py +++ b/osmclient/cli_commands/other.py @@ -25,6 +25,7 @@ logger = logging.getLogger("osmclient") @click.pass_context def get_version(ctx): """shows client and server versions""" + logger.debug("") utils.check_client_version(ctx.obj, "version") print("Server version: {}".format(ctx.obj.get_version())) print( diff --git a/osmclient/sol005/http.py b/osmclient/sol005/http.py index 5b140f5a1ef4b3f3eead4205dec3d6ee94f955f1..a506b376eaf895a8db2bf2381a0cf45b41c03c9f 100644 --- a/osmclient/sol005/http.py +++ b/osmclient/sol005/http.py @@ -264,6 +264,7 @@ class Http(http.Http): return http_code, None def check_http_response(self, http_code, data): + self._logger.debug("") if http_code >= 300: resp = "" if data: