aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storageapi/messageapi/bucketinforeply.cpp
blob: 6eb5f96e888bd6e0b706e287c3985346e253ec8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "bucketinforeply.h"
#include <ostream>

namespace storage::api {

void
BucketInfoReply::print(std::ostream& out, bool verbose,
                       const std::string& indent) const
{
    out << "BucketInfoReply(" << _result << ")";
    if (verbose) {
        out << " : ";
        BucketReply::print(out, verbose, indent);
    }
}

}