Skip to content

Commit 7ba7494

Browse files
committed
fix string formatting
1 parent ebba824 commit 7ba7494

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/restoreXcodeDerivedDataFiles.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ func logCurrentUserInfo(logger log.Logger) {
237237
}
238238

239239
logger.Debugf("Current user info:")
240-
logger.Debugf(" UID: %d", currentUser.Uid)
241-
logger.Debugf(" GID: %d", currentUser.Gid)
240+
logger.Debugf(" UID: %s", currentUser.Uid)
241+
logger.Debugf(" GID: %s", currentUser.Gid)
242242
logger.Debugf(" Username: %s", currentUser.Username)
243243
}

0 commit comments

Comments
 (0)