Skip to content

Commit

Permalink
minor profiling improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Feb 8, 2018
1 parent 04b0417 commit e603a86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -33,7 +33,7 @@ public class ProfilingConfigurationManager {
private static final Trace LOGGER = TraceManager.getTrace(ProfilingConfigurationManager.class);

private static final String REQUEST_FILTER_LOGGER_CLASS_NAME = "com.evolveum.midpoint.web.util.MidPointProfilingServletFilter";
private static final String SUBSYSTEM_PROFILING_LOGGER = "com.evolveum.midpoint.util.aspect.ProfilingDataManager";
private static final String SUBSYSTEM_PROFILING_LOGGER = ProfilingDataManager.class.getName();
private static final String APPENDER_IDM_PROFILE = "MIDPOINT_PROFILE_LOG";

/**
Expand Down
Expand Up @@ -39,7 +39,7 @@
* */
public class MethodUsageStatistics {

private static Trace LOGGER = TraceManager.getTrace(ProfilingDataManager.class);
private static final Trace LOGGER = TraceManager.getTrace(ProfilingDataManager.class);

private long min = Long.MAX_VALUE;
private long max = 0;
Expand Down

0 comments on commit e603a86

Please sign in to comment.