Skip to content

Commit

Permalink
Partially obfuscate user ID in shell output
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniils Petrovs committed Jan 14, 2022
1 parent a6e3646 commit ce50037
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/atoss_cli/atoss.clj
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
(defn login
"Login into ATOSS dashboard using provided credentials."
[driver {user :username pass :password}]
(println "Logging into ATOSS with user: " user)
(println "Logging into ATOSS with user: " (subs user 3) "***")
(doto driver
(api/go atoss-url)
(api/switch-frame :applicationIframe)
Expand Down

0 comments on commit ce50037

Please sign in to comment.