print startup exception to system err

This commit is contained in:
Sebastian Sdorra
2012-04-03 10:12:03 +02:00
parent 215b9b3757
commit 52d20c3837

View File

@@ -98,6 +98,9 @@ public class BasicContextProvider implements SCMContextProvider
catch (Throwable ex)
{
this.startupError = ex;
// print exception to system err
ex.printStackTrace(System.err);
}
}