Remove debug print statement (#52725)

Looks like a leftover.

## Test plan

Just a log statment.
This commit is contained in:
Erik Seliger 2023-05-31 22:40:31 +02:00 committed by GitHub
parent 75769fcdd5
commit ceef342ed5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -88,7 +88,6 @@ func (f *Users) Frequencies(ctx context.Context) ([]*UsersFrequencyNode, error)
}
query := sqlf.Sprintf(frequencyQuery, dateRangeCond, sqlf.Join(getDefaultConds(), ") AND ("))
fmt.Printf("Query %v", query)
rows, err := f.DB.QueryContext(ctx, query.Query(sqlf.PostgresBindVar), query.Args()...)