summaryrefslogtreecommitdiff
path: root/lib/utils/mu-logger.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/utils/mu-logger.cc')
-rw-r--r--lib/utils/mu-logger.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/utils/mu-logger.cc b/lib/utils/mu-logger.cc
index 882f3ba..632b7cd 100644
--- a/lib/utils/mu-logger.cc
+++ b/lib/utils/mu-logger.cc
@@ -49,6 +49,13 @@ maybe_open_logfile()
if (MuStream.is_open())
return true;
+ const auto logdir{to_string_gchar(g_path_get_dirname(MuLogPath.c_str()))};
+ if (g_mkdir_with_parents(logdir.c_str(), 0700) != 0) {
+ std::cerr << "creating " << logdir << " failed:" << g_strerror(errno)
+ << std::endl;
+ return false;
+ }
+
MuStream.open(MuLogPath, std::ios::out | std::ios::app);
if (!MuStream.is_open()) {
std::cerr << "opening " << MuLogPath << " failed:" << g_strerror(errno)