summaryrefslogtreecommitdiff
path: root/include/libcamera/base/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libcamera/base/log.h')
-rw-r--r--include/libcamera/base/log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libcamera/base/log.h b/include/libcamera/base/log.h
index 3fc5ced3..8b462767 100644
--- a/include/libcamera/base/log.h
+++ b/include/libcamera/base/log.h
@@ -31,14 +31,14 @@ class LogCategory
public:
explicit LogCategory(const char *name);
- const char *name() const { return name_; }
+ const std::string &name() const { return name_; }
LogSeverity severity() const { return severity_; }
void setSeverity(LogSeverity severity);
static const LogCategory &defaultCategory();
private:
- const char *name_;
+ const std::string name_;
LogSeverity severity_;
};