Skip to content

Commit

Permalink
updated suggested changes
Browse files Browse the repository at this point in the history
Signed-off-by: aryangupta701 <[email protected]>
  • Loading branch information
aryangupta701 committed Aug 28, 2023
1 parent 131e2c9 commit 80178b8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public void save() {
try {
script.setPrefix(this.getStringValue(FIELD_PREFIX));
} catch (MalformedURLException e) {
LOGGER.warn(e.getMessage(), e);
LOGGER.error(e.getMessage(), e);
}
}

Expand All @@ -255,7 +255,7 @@ public void save() {

if (!this.isServerSide()) {
if (!this.extension.isClientAccessible()) {
LOGGER.error(ERROR_CLIENT);
LOGGER.warn(ERROR_CLIENT);
View.getSingleton().showWarningDialog(Constant.messages.getString(ERROR_CLIENT));
return;
}
Expand Down

0 comments on commit 80178b8

Please sign in to comment.