aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storageapi/messageapi/bucketinfocommand.cpp
blob: 8d5ad85b8aaf34c8c417dabacf19693a5f77c012 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Yahoo. 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