#
# Copyright (c) 2021 Nordic Semiconductor
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

menuconfig EVENTS
	bool "Event options"
	default y

if EVENTS

config APP_EVENTS_LOG
	bool "Enable logging for application module events"
	default y

config MODEM_EVENTS_LOG
	bool "Enable logging for modem module events"
	default y

config CLOUD_EVENTS_LOG
	bool "Enable logging for Cloud module events"
	default y

config SENSOR_EVENTS_LOG
	bool "Enable logging for sensor module events"
	default y

config UI_EVENTS_LOG
	bool "Enable logging for UI module events"
	default y

config UTIL_EVENTS_LOG
	bool "Enable logging for utility module events"
	default y

config LOCATION_EVENTS_LOG
	bool "Enable logging for location module events"
	default y

config DATA_EVENTS_LOG
	bool "Enable logging for data module events"
	default y

config DEBUG_EVENTS_LOG
	bool "Enable logging for debug module events"
	default y

if NRF_PROFILER

choice
	prompt "Event type format for nrf_profiler"
	default NRF_PROFILER_EVENT_TYPE_INT

config NRF_PROFILER_EVENT_TYPE_STRING
	bool "Event type as string"

config NRF_PROFILER_EVENT_TYPE_INT
	bool "Event type as integer"

endchoice

endif # NRF_PROFILER

endif # EVENTS
