/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/ReactCxxPlatform/react/logging/DefaultLogger.h
20 строк
426 B
Andrew Datsenko
move rncxx logging (#50652)
11 апр 2025, 18:06
11 апр 2025, 18:06
798eb0a
Код
Авторство
О чём код?
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <functional> #include <string> namespace facebook::react { using Logger = std::function<void(const std::string& message, unsigned int logLevel)>; Logger getDefaultLogger(); } // namespace facebook::react