/* * This Source Code Form is subject to the terms of the Mozilla Public License, * v. 2.0. If a copy of the MPL was not distributed with this file, You can * obtain one at https://mozilla.org/MPL/2.0/. */ #include #include #include LOG_MODULE_REGISTER(firmware); int firmware_log_metadata(void) { LOG_INF("App build version: %s", BINDESC_GET_STR(app_build_version)); return 0; } SYS_INIT(firmware_log_metadata, APPLICATION, 0);