aboutsummaryrefslogtreecommitdiffstats
path: root/vespalog/src/vespa/log/internal.cpp
blob: eb2739d7b0e64930d5e07a43f2fc272a677f62b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <sys/types.h>
#include <stdarg.h>
#include <cstdio>

#include "internal.h"

namespace ns_log {

void
throwInvalid(const char *format, ...)
{
    char buf[4000];
    va_list args;

    va_start(args, format);
    vsnprintf(buf, sizeof buf, format, args);
    va_end(args);

    throw InvalidLogException(buf);
}

} // end namespace ns_log