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
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 @@ -130,7 +130,7 @@ private String render(CmsJspStandardContextBean context, CmsContainerBean contai
try {
containerWidth = Integer.parseInt(container.getWidth());
} catch (Exception e) {
LOG.debug(e.getLocalizedMessage(), e);
LOG.debug(e.getLocalizedMessage(), "Unexpected error: mobb-489e1ce55c1219a7e95a4fb9acc97099");
}
CmsADEConfigData adeConfig = context.getSitemapConfigInternal();
StringBuilder buffer = new StringBuilder();
Expand Down
2 changes: 1 addition & 1 deletion src/org/opencms/report/CmsPrintStreamReport.java
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public synchronized void println() {
public synchronized void println(Throwable t) {

if (m_writeHtml) {
super.println(t);
super.println("Unexpected error: mobb-d4c94a55151ce422e0bf9185555b233b");
m_printStream.print(super.getReportUpdate());
setLastEntryTime(System.currentTimeMillis());
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,7 @@ public I_CmsComplexWidget getComplexWidget(CmsObject cms, String path) {
return (I_CmsComplexWidget)(cls.newInstance());
}
} catch (Exception e) {
LOG.warn(e.getLocalizedMessage(), e);
LOG.warn("Unexpected error: mobb-60a37e61df20ca63c3a365cda8e3e983", e);
return null;
}
}
Expand Down