Skip to content

Commit

Permalink
Add auxiliary tracing method
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Oct 4, 2019
1 parent b0803ee commit c2963ee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Expand Up @@ -111,6 +111,8 @@ public void initSystem(Task initTask, OperationResult initResult)
// InternalMonitor.setTraceShadowFetchOperation(true);
// InternalMonitor.setTraceResourceSchemaOperations(true);
InternalMonitor.setTrace(InternalCounters.PRISM_OBJECT_CLONE_COUNT, true);

//setGlobalTracingOverride(createModelAndWorkflowLoggingTracingProfile());
}

@Test
Expand Down
Expand Up @@ -1828,6 +1828,10 @@ protected TracingProfileType createModelAndWorkflowLoggingTracingProfile() {
return addWorkflowLogging(createModelLoggingTracingProfile());
}

protected TracingProfileType createModelAndProvisioningLoggingTracingProfile() {
return addProvisioningLogging(createModelLoggingTracingProfile());
}

protected TracingProfileType addProvisioningLogging(TracingProfileType profile) {
return profile.getLoggingOverride()
.beginLevelOverride()
Expand Down

0 comments on commit c2963ee

Please sign in to comment.