Skip to content

Commit

Permalink
Adds some formatting change around printing password
Browse files Browse the repository at this point in the history
Signed-off-by: Darshit Chanpura <[email protected]>
  • Loading branch information
DarshitChanpura committed Nov 8, 2023
1 parent d0e0fec commit 88bb1e2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -329,9 +329,9 @@ private static void setAdminPassword() {
}

// print the password to the logs
System.out.println(" ***************************************************");
System.out.println(" *** ADMIN PASSWORD SET TO: " + ADMIN_PASSWORD + " ***");
System.out.println(" ***************************************************");
System.out.println("\t***************************************************");
System.out.println("\t\tADMIN PASSWORD SET TO: " + ADMIN_PASSWORD);
System.out.println("\t***************************************************");

String hashedAdminPassword = Hasher.hash(ADMIN_PASSWORD.toCharArray());

Expand Down

0 comments on commit 88bb1e2

Please sign in to comment.