Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ protected AdaptiveSampler(int target, int reportPeriodSeconds){
this.sampledCount = 0;
this.sampledCountLast = 0;
this.firstPeriod = true;
NewRelic.getAgent().getLogger().log(Level.FINE, "Started Adaptive Sampler with sampling target " + this.target + " and report period " +
NewRelic.getAgent().getLogger().log(Level.INFO, "Started Adaptive Sampler with sampling target " + this.target + " and report period " +
reportPeriodSeconds + " seconds.");
}

Expand Down Expand Up @@ -67,7 +67,7 @@ public static synchronized AdaptiveSampler getSharedInstance(){
*/
public static synchronized void setSharedTarget(int newTarget) {
if (SAMPLER_SHARED_INSTANCE != null) {
NewRelic.getAgent().getLogger().log(Level.FINE, "Updating shared Adaptive Sampler sampling target to " + newTarget);
NewRelic.getAgent().getLogger().log(Level.INFO, "Updating shared Adaptive Sampler sampling target to " + newTarget);
getSharedInstance().setTarget(newTarget);

ServiceFactory.getStatsService()
Expand Down
Loading