File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
packages/indexer-common/src/indexing-fees Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -127,9 +127,14 @@ export class DipsManager {
127
127
const subgraphDeploymentID = new SubgraphDeploymentID (
128
128
agreement . subgraph_deployment_id ,
129
129
)
130
+ this . logger . info (
131
+ `Checking if indexing rule exists for agreement ${ agreement . id } , deployment ${ subgraphDeploymentID . toString ( ) } ` ,
132
+ )
130
133
// If there is not yet an indexingRule that deems this deployment worth allocating to, make one
131
134
if ( ! ( await this . parent . matchingRuleExists ( this . logger , subgraphDeploymentID ) ) ) {
132
- this . logger . debug ( `Creating indexing rule for agreement ${ agreement . id } ` )
135
+ this . logger . info (
136
+ `Creating indexing rule for agreement ${ agreement . id } , deployment ${ agreement . subgraph_deployment_id } ` ,
137
+ )
133
138
const indexingRule = {
134
139
identifier : agreement . subgraph_deployment_id ,
135
140
allocationAmount : formatGRT (
You can’t perform that action at this time.
0 commit comments