Skip to content

Commit

Permalink
Add better logging to show base 10 value
Browse files Browse the repository at this point in the history
  • Loading branch information
andreleblanc11 committed Sep 11, 2024
1 parent 7566473 commit 862a9b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sarracenia/transfer/ftp.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def cd(self, path):
alarm_cancel()

def cd_forced(self, path):
logger.debug("sr_ftp cd_forced %d %s" % (self.o.permDirDefault, path))
logger.debug("sr_ftp cd_forced %o %s" % (self.o.permDirDefault, path))

# try to go directly to path

Expand Down
2 changes: 1 addition & 1 deletion sarracenia/transfer/sftp.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def cd(self, path):

# cd forced
def cd_forced(self, path):
logger.debug("sr_sftp cd_forced %d %s" % (self.o.permDirDefault, path))
logger.debug("sr_sftp cd_forced %o %s" % (self.o.permDirDefault, path))

# try to go directly to path

Expand Down

0 comments on commit 862a9b7

Please sign in to comment.