fix: change command log to info

This commit is contained in:
Andrii V 2025-05-13 13:25:47 +02:00
parent 56266cbc4f
commit 1312d6e8bc

View file

@ -42,7 +42,7 @@ class GitTunnelWrapper(object):
# Support for partial and shallow cloning
git_server_config = " -c uploadpack.allowfilter=true -c uploadpack.allowAnySHA1InWant=true "
command = f"cd {root}; {self.server.git_path}{git_server_config}{self.server.repo_mode} '{root}{self.server.repo_name}'"
log.debug("Final CMD: %s", command)
log.info("Final CMD: %s", command)
return command
def run(self, extras):