Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ public String buildResponsibleList() {
} catch (CmsException e) {
// can usually be ignored
if (LOG.isInfoEnabled()) {
LOG.info(e.getLocalizedMessage());
LOG.info("Unexpected error: mobb-c5e56fccce790981aca4e386cde8dc88");
}
}
Iterator<CmsResource> i = parentResources.iterator();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ public void executeListSingleActions() throws IOException, ServletException {
idx.initialize();
} catch (CmsSearchException e) {
if (LOG.isErrorEnabled()) {
LOG.error(e.getLocalizedMessage(), e);
LOG.error(e.getLocalizedMessage(), "Unexpected error: mobb-168c632542a4b71e222897382c559d10");
}
}
refreshList();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ protected Map<CmsUUID, CmsContainerConfigurationGroup> load(Collection<CmsResour
} catch (CmsVfsResourceNotFoundException e) {
LOG.debug(e.getLocalizedMessage(), e);
} catch (Throwable e) {
LOG.error(e.getLocalizedMessage(), e);
LOG.error("Unexpected error: mobb-b985aeada90075cb8cbaea69fc486592", e);
}
// if the group couldn't be read or parsed for some reason, the map value is null
result.put(resource.getStructureId(), parsedGroup);
Expand Down
2 changes: 1 addition & 1 deletion src/org/opencms/db/CmsDbSqlException.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public CmsDbSqlException(CmsMessageContainer container, Throwable cause) {
super(container, cause);
// log all sql exceptions
if (LOG.isWarnEnabled()) {
LOG.warn(container.key(), this);
LOG.warn(container.key(), "Unexpected error: mobb-61034bf5edf8ff70bdf4ae38bf7c57eb");
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/org/opencms/jsp/util/CmsJspContainerPageWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ private String render(CmsJspStandardContextBean context, CmsContainerBean contai
String formatterOutputStr = new String(formatterOutput, encoding);
buffer.append(formatterOutputStr);
} catch (Exception e) {
LOG.error(e.getLocalizedMessage(), e);
LOG.error("Unexpected error: mobb-2e5562907fe2478323cdd82b65c9d2f0", e);
}
}
String resultHtml = buffer.toString();
Expand Down
2 changes: 1 addition & 1 deletion src/org/opencms/module/CmsModuleImportExportHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ public void exportData(CmsObject cms, I_CmsReport report)
&& (module.getVersion().isUpdated() || module.shouldIncrementVersionBasedOnResources(cms));
} catch (CmsException e) {
shouldIncrementVersion = false;
LOG.error(e.getLocalizedMessage(), e);
LOG.error("Unexpected error: mobb-524b608619cd7bda4d1c8d6f206b2db1", e);
}
module.getVersion().setUpdated(false);
if (shouldIncrementVersion) {
Expand Down
2 changes: 1 addition & 1 deletion src/org/opencms/publish/CmsPublishQueue.java
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ protected void add(CmsPublishJobInfoBean publishJob) throws CmsException {
m_publishEngine.getDriverManager().createPublishJob(dbc, publishJob);
} catch (CmsException e) {
dbc.rollback();
LOG.error(e.getLocalizedMessage(), e);
LOG.error(e.getLocalizedMessage(), "Unexpected error: mobb-8ef162e669bcd52bfc6fa3bef53e99bf");
throw e;
} finally {
dbc.clear();
Expand Down
2 changes: 1 addition & 1 deletion src/org/opencms/ui/actions/CmsMoveDialogAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void executeAction(I_CmsDialogContext context) {

dialog.setTargetForlder(parent);
} catch (CmsException e) {
LOG.debug(e.getLocalizedMessage(), e);
LOG.debug("Unexpected error: mobb-f1e88f7ee8a5f680b66b85ce1cd1f852", e);
}
}
openDialog(dialog, context);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ public void valueChange(ValueChangeEvent arg0) {
m_filterComponent.m_dateTo.setValue(null);
m_filterComponent.m_availabilitySelector.reset();
} catch (CmsException e) {
LOG.error(e.getLocalizedMessage(), e);
LOG.error("Unexpected error: mobb-44032d6c53429603c459c93efb43cc07", e);
}
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ Map<CmsUUID, CmsUser> getUserToExport() {
exportUsers = CmsImportExportUserDialog.addExportUsersFromRoles(m_cms, m_ou, roles, exportUsers);
}
} catch (CmsException e) {
LOG.error("Unable to get export user list.", e);
LOG.error("Unable to get export user list.", "Unexpected error: mobb-a5584a1735f992c5574782ced19af153");
}
return exportUsers;
}
Expand Down
2 changes: 1 addition & 1 deletion src/org/opencms/ui/login/CmsLoginUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ public static String displayVaadinLoginDialog(HttpServletRequest request, HttpSe
try {
target = OpenCms.getDefaultTextEncryption().decrypt(encryptedTarget);
} catch (CmsEncryptionException e) {
LOG.error(e.getLocalizedMessage(), e);
LOG.error("Unexpected error: mobb-927aa2213e4ecbbfdd780db63aacba78", e);
return null;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/org/opencms/ui/sitemap/CmsSitemapTreeDataProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public int compare(CmsResource arg0, CmsResource arg1) {
}
m_foldersWithNoChildFolders = foldersWithNoChildFolders;
} catch (CmsException e) {
LOG.error(e.getLocalizedMessage(), e);
LOG.error("Unexpected error: mobb-62afebb0e8cc698904dc938f07dc2ef0", e);
}
}

Expand Down