Remove unnecessary log line - Fix #188

This commit is contained in:
Jens Ulrich Hjuler Pedersen 2019-04-24 10:02:33 +02:00
parent 680e404250
commit 113f90ec5e
No known key found for this signature in database
GPG key ID: DD653584BADABEFC

View file

@ -210,7 +210,6 @@ func (q *metricsQuery) processQueryParts(queryParts []queryPart) ([]string, map[
for _, qPart := range queryParts { for _, qPart := range queryParts {
// Be resilient against bad inputs. // Be resilient against bad inputs.
// We obviously can't generate label filters for these cases. // We obviously can't generate label filters for these cases.
fmt.Println("This is queryPart", qPart.labelName, qPart.operator, qPart.values)
if qPart.labelName == "" { if qPart.labelName == "" {
return nil, nil, ErrLabelNotSpecified return nil, nil, ErrLabelNotSpecified
} }