aboutsummaryrefslogtreecommitdiffstats
path: root/persistence/src/vespa/persistence/spi/attribute_resource_usage.cpp
blob: 664b0241219c31da2797eba4d7f3f50fc7a993d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "attribute_resource_usage.h"
#include <iostream>

namespace storage::spi {

std::ostream& operator<<(std::ostream& out, const AttributeResourceUsage& attribute_resource_usage)
{
    out << "{usage=" << attribute_resource_usage.get_usage() <<
        ", name=" << attribute_resource_usage.get_name() << "}";
    return out;
}

}