-
Notifications
You must be signed in to change notification settings - Fork 709
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ FAB-6963 ] Fix binary data in log file
From a debug statement in genCRLHandler() from lib/servergencrl.go, the crl is printed in raw binary. This change would print the standard string representation of a []byte stream: - log.Debugf("Successfully generated CRL: %s\n", crl) + log.Debugf("Successfully generated CRL: %v\n", crl) Change-Id: I75e2583449c0b4c087ade3540dc138931ea5b5c2 Signed-off-by: Allen Bailey <eabailey@us.ibm.com>
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters