Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
partons
core
elementary-utils
Commits
6903975d
Commit
6903975d
authored
Sep 27, 2016
by
Bryan Berthou
Browse files
refs#16
In ElementaryUtils (trunk) : - Restore write append mode for log file.
parent
40924ce9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/ElementaryUtils/logger/LoggerManager.cpp
View file @
6903975d
...
...
@@ -156,7 +156,8 @@ void LoggerManager::defineLevel(LoggerLevel loggerLevel) {
}
// mutex.unlock()
void
LoggerManager
::
update
()
{
bool
fileOpened
=
FileUtils
::
open
(
m_fileOutputStream
,
m_outputFilePath
);
bool
fileOpened
=
FileUtils
::
open
(
m_fileOutputStream
,
m_outputFilePath
,
std
::
ios_base
::
out
|
std
::
ios_base
::
app
);
if
(
fileOpened
)
{
while
(
m_active
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment