src/java/org/apache/fulcrum/yaafi/interceptor/jamon/JamonInterceptorServiceImpl.java [246:273]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		} catch (Exception e) {
			String msg = "Failed to create a performance monitor instance : " + this.performanceMonitorClassName;
			this.getLogger().error(msg, e);
			return result;
		}
	}

	/**
	 * Write a report file
	 */
	protected void writeReport() {
		if (this.reportTimeout > 0) {
			long currTimestamp = System.currentTimeMillis();

			if (currTimestamp > this.nextReportTimestamp) {
				this.nextReportTimestamp = currTimestamp + this.reportTimeout;
				this.writeReport(this.reportFile);
			}
		}
	}

	/**
	 * Write the HTML report to the given destination.
	 *
	 * @param reportFile the report destination
	 */
	protected void writeReport(File reportFile) {
		PrintWriter printWriter = null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/java/org/apache/fulcrum/yaafi/interceptor/javasimon/JavaSimonInterceptorServiceImpl.java [249:277]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		} catch (Exception e) {
			String msg = "Failed to create a performance monitor instance : " + this.performanceMonitorClassName;
			this.getLogger().error(msg, e);
		}

		return result;
	}

	/**
	 * Write a report file
	 */
	protected void writeReport() {
		if (this.reportTimeout > 0) {
			long currTimestamp = System.currentTimeMillis();

			if (currTimestamp > this.nextReportTimestamp) {
				this.nextReportTimestamp = currTimestamp + this.reportTimeout;
				this.writeReport(this.reportFile);
			}
		}
	}

	/**
	 * Write the HTML report to the given destination.
	 *
	 * @param reportFile the report destination
	 */
	protected void writeReport(File reportFile) {
		PrintWriter printWriter = null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



