summaryrefslogtreecommitdiff
path: root/src/components/config_profile/include/config_profile/profile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/config_profile/include/config_profile/profile.h')
-rw-r--r--src/components/config_profile/include/config_profile/profile.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/components/config_profile/include/config_profile/profile.h b/src/components/config_profile/include/config_profile/profile.h
index 6a43cafdd3..1a91554b0b 100644
--- a/src/components/config_profile/include/config_profile/profile.h
+++ b/src/components/config_profile/include/config_profile/profile.h
@@ -64,6 +64,11 @@ class Profile : public utils::Singleton<Profile> {
const std::string& sdl_version() const;
/**
+ * @brief Returns true if logging is enabled, otherwise false
+ */
+ bool logs_enabled() const;
+
+ /**
* @brief Returns true if HMI should be started, otherwise false
*/
bool launch_hmi() const;
@@ -625,6 +630,7 @@ class Profile : public utils::Singleton<Profile> {
private:
std::string sdl_version_;
+ bool logs_enabled_;
bool launch_hmi_;
#ifdef WEB_HMI
std::string link_to_web_hmi_;