Skip to content

Commit

Permalink
Fixed:MOSIP-24102
Browse files Browse the repository at this point in the history
  • Loading branch information
Fossgen_AvinashW authored and Fossgen_AvinashW committed Dec 20, 2022
1 parent c6b7ae2 commit 7be6d8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ public static boolean unZipDirectory(String zipFilePath, String destDirectory) t

try (ZipInputStream zipIn = new ZipInputStream(new FileInputStream(zipFilePath))) {

ZipEntry entry = zipIn.getNextEntry(); //NOSONAR Setting the ZipEntry here.
ZipEntry entry = zipIn.getNextEntry(); //NOSONAR Setting the ZipEntry here.
while (entry != null) {

String filePath = destDirectory + File.separator + entry.getName();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private LoggerImpl(ConsoleAppender mosipConsoleAppender, String name, LogLevel l
consoleAppender.setTarget(mosipConsoleAppender.getTarget());
consoleAppender.start();
if (logLevel != null) {
this.logger.setLevel(Level.valueOf(logLevel.getLevel())); //NOSONAR Setting the loglevel here.
this.logger.setLevel(Level.valueOf(logLevel.getLevel())); //NOSONAR Setting the loglevel here.
} else {
this.logger.setLevel(Level.valueOf(LogLevel.DEBUG.getLevel())); //NOSONAR Setting the loglevel to DEBUG here.
}
Expand Down

0 comments on commit 7be6d8d

Please sign in to comment.