Runtime/Behavior Changes

In 11.0 its a lot easier to get started using background reports. Now there is a single interface in cet/runtime/errorlogger.cm. To send an background report simply call this function with the data you want to include in the report.

New for 11.0 is that files now can be added to the report using the files field.

/**
 * Log error.
 *
 * Origin is an optional reference to issue origin.
 */
public void logError(str message=null,
		     Exception exception=null,
		     CallStack stack=null,
		     StrBuf logOutput=null,
		     SrcRef origin=null,
		     SrcRef loggedAt=#:src,
		     Url[] files=null) {
    errorLogger.logError(..);
}