blob: 9ae6101ccd6ff55753e0ed82407d2580714174f8 [file] [log] [blame] [edit]
// Copyright 2024 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "sdk/lib/syslog/cpp/log_settings.h"
extern "C" {
void init_cpp_logging(uint8_t min_severity) {
fuchsia_logging::LogSettingsBuilder settings;
settings.WithMinLogSeverity(min_severity);
settings.BuildAndInitialize();
}
}