Skip to content

Commit

Permalink
Removed extra linefeeds
Browse files Browse the repository at this point in the history
  • Loading branch information
cjmalloy committed Jan 7, 2024
1 parent a9b14b6 commit 454b671
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/java/jasper/config/SecurityConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,21 +61,21 @@ void init() {
if (!props.isDebug()) props.setDebug(unsafeSecret);
if (props.isDebug()) {
logger.error("==================================================");
logger.error("==================================================\n");
logger.error("DEBUG MODE\n");
logger.error("==================================================");
logger.error("DEBUG MODE");
logger.error("==================================================");
logger.error("==================================================");
}
if (props.isMultiTenant()) {
logger.warn("==================================================");
logger.warn("==================================================\n");
logger.warn("MULTI TENANT\n");
logger.warn("==================================================");
logger.warn("MULTI TENANT");
logger.warn("==================================================");
logger.warn("==================================================");
} else {
logger.warn("==================================================");
logger.warn("==================================================\n");
logger.warn("SINGLE TENANT\n");
logger.warn("==================================================");
logger.warn("SINGLE TENANT");
logger.warn("==================================================");
logger.warn("==================================================");
}
Expand Down

0 comments on commit 454b671

Please sign in to comment.