Examples of PathTrackingInformation


Examples of org.apache.sirona.tracking.PathTrackingInformation

        int lastDot = key.lastIndexOf( "." );

        String className = key.substring( 0, lastDot );
        String methodName = key.substring( lastDot + 1, key.length() );

        final PathTrackingInformation pathTrackingInformation =
            new PathTrackingInformation( className, methodName );

        SironaAgentLogging.debug( "call PathTracker#start with {0}", pathTrackingInformation );

        context.put( PATH_TRACKER_KEY, PathTracker.start( pathTrackingInformation ) );
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.