Skip to content

Commit

Permalink
Add more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Rithika committed Jul 24, 2023
1 parent e38d5fb commit 29b1d74
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
class MetricAggregationPolicySource
{
private MetricAggregationRulesLoader rulesLoader;
private static final Logger log = LoggerFactory.getLogger( MetricAggregationPolicySource.class );

public MetricAggregationPolicySource( MetricAggregationRulesLoader rulesLoader)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class StorageAggregationRule
final private Pattern pattern;
final AggregationMethod method;
final private boolean alwaysTrue;
private static final Logger log = LoggerFactory.getLogger( StorageAggregationRule.class );

public static StorageAggregationRule parseDefinition( String line)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public class StorageAggregationRules
{
private int revision;
private List<StorageAggregationRule> rules = new ArrayList<>();
private static final Logger log = LoggerFactory.getLogger( StorageAggregationRules.class );

/**
* Initializes instance with rules.
Expand Down

0 comments on commit 29b1d74

Please sign in to comment.