Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
J
jami-client-windows
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
savoirfairelinux
jami-client-windows
Commits
bbd3a6f4
Commit
bbd3a6f4
authored
Sep 27, 2019
by
Andreas Traczyk
Committed by
Ming Rui Zhang
Sep 27, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
debug: save log file to appdata local
Change-Id: Ia4acacf54465aa7214ee16f28520bd5f6c5a9f02
parent
26af683c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
main.cpp
main.cpp
+5
-1
No files found.
main.cpp
View file @
bbd3a6f4
...
...
@@ -220,7 +220,11 @@ main(int argc, char* argv[])
splash
->
hide
();
LRCInstance
::
subscribeToDebugReceived
();
QFile
debugFile
(
qApp
->
applicationDirPath
()
+
"/"
+
"jami.log"
);
QDir
logPath
(
QStandardPaths
::
writableLocation
(
QStandardPaths
::
AppLocalDataLocation
));
// since logPath will be .../Ring, we use cdUp to remove it.
logPath
.
cdUp
();
QFile
debugFile
(
logPath
.
absolutePath
()
+
"/jami/jami.log"
);
for
(
auto
string
:
QCoreApplication
::
arguments
())
{
if
(
string
.
startsWith
(
"jami:"
))
{
...
...
Write
Preview
Markdown
is supported
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