Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
9edaf4df
Commit
9edaf4df
authored
3 weeks ago
by
Adrien Béraud
Committed by
Adrien Béraud
3 weeks ago
Browse files
Options
Downloads
Patches
Plain Diff
logs: make syslog disabled by default
Change-Id: If05e5c35a739b7149b66622c249c303996ba8550
parent
54cda5a9
No related branches found
Branches containing commit
No related tags found
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/jami/jami.h
+1
-0
1 addition, 0 deletions
src/jami/jami.h
src/ring_api.cpp
+1
-2
1 addition, 2 deletions
src/ring_api.cpp
with
2 additions
and
2 deletions
src/jami/jami.h
+
1
−
0
View file @
9edaf4df
...
...
@@ -35,6 +35,7 @@ namespace libjami {
enum
InitFlag
{
LIBJAMI_FLAG_DEBUG
=
1
<<
0
,
LIBJAMI_FLAG_CONSOLE_LOG
=
1
<<
1
,
LIBJAMI_FLAG_SYSLOG
=
1
<<
3
,
LIBJAMI_FLAG_AUTOANSWER
=
1
<<
2
,
LIBJAMI_FLAG_IOS_EXTENSION
=
1
<<
4
,
LIBJAMI_FLAG_NO_LOCAL_AUDIO
=
1
<<
6
,
...
...
This diff is collapsed.
Click to expand it.
src/ring_api.cpp
+
1
−
2
View file @
9edaf4df
...
...
@@ -45,8 +45,7 @@ init(enum InitFlag flags) noexcept
{
initFlags
=
flags
;
jami
::
Logger
::
setDebugMode
(
LIBJAMI_FLAG_DEBUG
==
(
flags
&
LIBJAMI_FLAG_DEBUG
));
jami
::
Logger
::
setSysLog
(
true
);
jami
::
Logger
::
setSysLog
(
LIBJAMI_FLAG_SYSLOG
==
(
flags
&
LIBJAMI_FLAG_SYSLOG
));
jami
::
Logger
::
setConsoleLog
(
LIBJAMI_FLAG_CONSOLE_LOG
==
(
flags
&
LIBJAMI_FLAG_CONSOLE_LOG
));
const
char
*
log_file
=
getenv
(
"JAMI_LOG_FILE"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment