Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
duniter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nodes
typescript
duniter
Merge requests
!1332
[fix] log file name change
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Closed
[fix] log file name change
fix/log-file-name
into
dev
Overview
0
Commits
1
Pipelines
0
Changes
2
Closed
[fix] log file name change
Éloïs
requested to merge
fix/log-file-name
into
dev
Oct 8, 2020
Overview
0
Commits
1
Pipelines
0
Changes
2
0
0
Merge request reports
Compare
dev
version 1
16badbf2
Oct 8, 2020
dev (base)
and
latest version
latest version
d097eae8
1 commit,
Oct 8, 2020
version 1
16badbf2
1 commit,
Oct 8, 2020
2 files
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
app/lib/dal/fileDAL.ts
+
1
−
1
View file @ d097eae8
Show full file
@@ -1553,7 +1553,7 @@ export class FileDAL implements ServerDAO {
try
{
let
lines
:
string
[]
=
[],
i
=
0
;
const
logPath
=
path
.
join
(
this
.
rootPath
,
"
duniter.log
"
);
const
logPath
=
path
.
join
(
this
.
rootPath
,
"
exe_
duniter
_rCURRENT
.log
"
);
const
readStream
=
fs
.
createReadStream
(
logPath
);
readStream
.
on
(
"
error
"
,
(
err
:
any
)
=>
reject
(
err
));
const
lineReader
=
readline
.
createInterface
({
Loading