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

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

namespace storage {
namespace api {

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

} // api
} // storage