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 @@ -80,7 +80,7 @@ public void run() {
} catch (Exception e) {
getReport().println(e);
if (LOG.isErrorEnabled()) {
LOG.error(e.getLocalizedMessage());
LOG.error("Unexpected error: mobb-22f53f37f7ba8077f829d67f78fcfbc4");
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/org/opencms/ade/galleries/CmsGalleryActionElement.java
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ private CmsGalleryConfiguration createGalleryConfigurationFromRequest(GalleryMod
String searchTypes = CmsVfsFileWidget.getDefaultSearchTypes(cms, referenceResource);
conf.setSearchTypes(CmsStringUtil.splitAsList(searchTypes, ","));
} catch (CmsException e) {
LOG.warn(e.getLocalizedMessage(), e);
LOG.warn(e.getLocalizedMessage(), "Unexpected error: mobb-ee1f837bf1a1bad1a30c5808b1606471");
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/org/opencms/db/generic/CmsProjectDriver.java
Original file line number Diff line number Diff line change
Expand Up @@ -3584,7 +3584,7 @@ protected void publishDeletedFile(
if (LOG.isErrorEnabled()) {
LOG.error(
Messages.get().getBundle().key(Messages.LOG_READING_RESOURCE_1, offlineResource.getRootPath()),
e);
"Unexpected error: mobb-ba4fc74bebbc7d1cadb4413729fe6b1e");
}
throw e;
}
Expand Down
2 changes: 1 addition & 1 deletion src/org/opencms/importexport/CmsImportVersion10.java
Original file line number Diff line number Diff line change
Expand Up @@ -2001,7 +2001,7 @@ public void importRelations() {
getReport().addWarning(e);
withErrors = true;
if (LOG.isWarnEnabled()) {
LOG.warn(e.getLocalizedMessage());
LOG.warn("Unexpected error: mobb-6e2ff335cf2e4b5eade3892cb536ddec");
}
if (LOG.isDebugEnabled()) {
LOG.debug(e.getLocalizedMessage(), e);
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 @@ -142,7 +142,7 @@ public static CmsModuleImportExportHandler getExportHandler(
}
} catch (CmsException e) {
// should never happen
LOG.error(e.getLocalizedMessage(), e);
LOG.error("Unexpected error: mobb-ea5ffdd25ca62a8b69c02debe345f62e", e);
}
try {
resListCopy = CmsModule.calculateModuleResourceNames(cms, module);
Expand Down
2 changes: 1 addition & 1 deletion src/org/opencms/report/CmsLogReport.java
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public synchronized void println(Throwable t) {
message.append(t.getMessage());
m_buffer.append(message);
addError(message.toString());
CmsLog.getLog(m_channel).info(m_buffer.toString(), t);
CmsLog.getLog(m_channel).info("Unexpected error: mobb-28f4b58032e6742f57d0be58849fef1f", t);
}
m_buffer = new StringBuffer();
setLastEntryTime(System.currentTimeMillis());
Expand Down
2 changes: 1 addition & 1 deletion src/org/opencms/ui/apps/user/CmsOUTable.java
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ public Object generateCell(Table source, Object itemId, Object columnId) {
addOuToTable(ou);
}
} catch (CmsException e) {
LOG.error("Unable to read ous", e);
LOG.error("Unable to read ous", "Unexpected error: mobb-29c42270134af6b1bd0b421f263e3fab");
}

addItemClickListener(new ItemClickListener() {
Expand Down
5 changes: 1 addition & 4 deletions src/org/opencms/util/CmsMacroResolver.java
Original file line number Diff line number Diff line change
Expand Up @@ -869,10 +869,7 @@ public String getMacroValue(String macro) {
} catch (CmsException e) {
if (LOG.isWarnEnabled()) {
LOG.warn(
Messages.get().getBundle().key(
Messages.LOG_PROPERTY_READING_FAILED_2,
macro,
controller.getCurrentRequest().getElementUri()),
"Unexpected error: mobb-9523553da76451eb5dadc790d9d03ff9",
e);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/org/opencms/workplace/editors/CmsXmlContentEditor.java
Original file line number Diff line number Diff line change
Expand Up @@ -1477,7 +1477,7 @@ protected void initWorkplaceRequestValues(CmsWorkplaceSettings settings, HttpSer
} catch (Exception e) {
// should usually never happen
if (LOG.isInfoEnabled()) {
LOG.info(e.getLocalizedMessage(), e);
LOG.info("Unexpected error: mobb-e4753c3f2e1a1792e435199993c89071", e);
}
}
setAction(ACTION_EXIT);
Expand Down
4 changes: 2 additions & 2 deletions src/org/opencms/workplace/explorer/CmsResourceUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,7 @@ public CmsPermissionSet getPermissionSet() {
pset.denyPermissions(CmsPermissionSet.PERMISSION_VIEW);
}
} catch (CmsException e) {
LOG.error(e.getLocalizedMessage());
LOG.error("Unexpected error: mobb-8cc1809eeb3cda49d55ecb78fd683adb");
}
try {
if (getCms().hasPermissions(resource, CmsPermissionSet.ACCESS_WRITE, false, CmsResourceFilter.ALL)) {
Expand All @@ -867,7 +867,7 @@ public CmsPermissionSet getPermissionSet() {
pset.denyPermissions(CmsPermissionSet.PERMISSION_WRITE);
}
} catch (CmsException e) {
LOG.error(e.getLocalizedMessage());
LOG.error("Unexpected error: mobb-a89f512f9239cc94bd3640e279614ee8");
}

return pset;
Expand Down
2 changes: 1 addition & 1 deletion src/org/opencms/xml/CmsXmlContentDefinition.java
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ public static CmsXmlContentDefinition getContentDefinitionForResource(CmsObject
if (!LOG.isDebugEnabled()) {
LOG.warn(e.getLocalizedMessage(), e);
}
LOG.debug(e.getLocalizedMessage(), e);
LOG.debug("Unexpected error: mobb-08d0089c0cb7e7356aaf106a8dba059f", e);
}
}
if (contentDef == null) {
Expand Down