Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 232505 Details for
Bug 410919
Error initializing metadata store on startup
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Better logging
patch.txt (text/plain), 923 bytes, created by
John Arthorne
on 2013-06-18 11:14:03 EDT
(
hide
)
Description:
Better logging
Filename:
MIME Type:
Creator:
John Arthorne
Created:
2013-06-18 11:14:03 EDT
Size:
923 bytes
patch
obsolete
>diff --git a/bundles/org.eclipse.orion.server.core/src/org/eclipse/orion/internal/server/core/Activator.java b/bundles/org.eclipse.orion.server.core/src/org/eclipse/orion/internal/server/core/Activator.java >index 396e1d3..f81cd22 100644 >--- a/bundles/org.eclipse.orion.server.core/src/org/eclipse/orion/internal/server/core/Activator.java >+++ b/bundles/org.eclipse.orion.server.core/src/org/eclipse/orion/internal/server/core/Activator.java >@@ -93,8 +93,9 @@ > if (metastore == null) { > //if we still don't have a store then something is wrong with server configuration > final String msg = "Invalid server configuration. Failed to initialize a metadata store"; //$NON-NLS-1$ >- logger.error(msg); >- throw new IllegalStateException(msg); >+ final IllegalStateException failure = new IllegalStateException(msg); >+ logger.error(msg, failure); >+ throw failure; > } > } > return metastore;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 410919
: 232505