diff options
Diffstat (limited to 'src/base/platform')
-rw-r--r-- | src/base/platform/unix/PosixSpawnSubProcess.cpp | 2 | ||||
-rw-r--r-- | src/base/platform/unix/UnixPipe.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/base/platform/unix/PosixSpawnSubProcess.cpp b/src/base/platform/unix/PosixSpawnSubProcess.cpp index 5e09c494..631c14b8 100644 --- a/src/base/platform/unix/PosixSpawnSubProcess.cpp +++ b/src/base/platform/unix/PosixSpawnSubProcess.cpp @@ -162,7 +162,7 @@ SubProcessExitResult PosixSpawnSubProcessImpl::PlatformWaitForProcess() { while (waitpid(pid_, &wstatus, 0) == -1) { if (errno == EINTR) { - CRU_LOG_INFO(u"Waitpid is interrupted by a signal. Call it again."); + CRU_LOG_TAG_INFO(u"Waitpid is interrupted by a signal. Call it again."); continue; } diff --git a/src/base/platform/unix/UnixPipe.cpp b/src/base/platform/unix/UnixPipe.cpp index 747efe94..f512c2f4 100644 --- a/src/base/platform/unix/UnixPipe.cpp +++ b/src/base/platform/unix/UnixPipe.cpp @@ -43,7 +43,7 @@ UnixPipe::~UnixPipe() { if (auto_close_) { auto self_fd = GetSelfFileDescriptor(); if (::close(self_fd) != 0) { - CRU_LOG_ERROR(u"Failed to close unix pipe file descriptor {}, errno {}.", + CRU_LOG_TAG_ERROR(u"Failed to close unix pipe file descriptor {}, errno {}.", self_fd, errno); } } |