Skip to content

Commit

Permalink
fix string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
imrekel committed Aug 26, 2024
1 parent ebba824 commit 7ba7494
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/restoreXcodeDerivedDataFiles.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ func logCurrentUserInfo(logger log.Logger) {
}

logger.Debugf("Current user info:")
logger.Debugf(" UID: %d", currentUser.Uid)
logger.Debugf(" GID: %d", currentUser.Gid)
logger.Debugf(" UID: %s", currentUser.Uid)
logger.Debugf(" GID: %s", currentUser.Gid)
logger.Debugf(" Username: %s", currentUser.Username)
}

0 comments on commit 7ba7494

Please sign in to comment.