Welcome to mirror list, hosted at ThFree Co, Russian Federation.

logging.cpp « blender « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97b1888b0c490dd89c6adf04f4e2d6ff2e54f03e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: Apache-2.0
 * Copyright 2011-2022 Blender Foundation */

#include "blender/CCL_api.h"
#include "util/log.h"

void CCL_init_logging(const char *argv0)
{
  ccl::util_logging_init(argv0);
}

void CCL_start_debug_logging()
{
  ccl::util_logging_start();
}

void CCL_logging_verbosity_set(int verbosity)
{
  ccl::util_logging_verbosity_set(verbosity);
}