Skip to content

Commit

Permalink
Merge pull request #19 from BlackLotus-SMP/dev
Browse files Browse the repository at this point in the history
dont print token
  • Loading branch information
Kahzerx authored Aug 21, 2023
2 parents cb8a5e3 + fdd6bc1 commit c3bc4fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public String toString() {
"name='" + this.getName() + '\'' +
", enabled=" + this.isEnabled() +
", description='" + this.isEnabled() + '\'' +
", token='" + token + '\'' +
", token='" + (token.length() >= 8 ? token.substring(0, 8) + "..." : "") + '\'' +
", crossServerChat=" + crossServerChat +
", prefix='" + prefix + '\'' +
", commandPrefix='" + commandPrefix + '\'' +
Expand Down

0 comments on commit c3bc4fb

Please sign in to comment.