Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
3c229c6b
Unverified
Commit
3c229c6b
authored
Dec 01, 2020
by
Arve Knudsen
Committed by
GitHub
Dec 01, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Log: Use os.Open to open file for reading (#29483)
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
parent
097dcc45
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
pkg/infra/log/file.go
+3
-3
No files found.
pkg/infra/log/file.go
View file @
3c229c6b
...
...
@@ -123,13 +123,13 @@ func (w *FileLogWriter) createLogFile() (*os.File, error) {
}
func
(
w
*
FileLogWriter
)
lineCounter
()
(
int
,
error
)
{
r
,
err
:=
os
.
Open
File
(
w
.
Filename
,
os
.
O_RDONLY
,
0644
)
r
,
err
:=
os
.
Open
(
w
.
Filename
)
if
err
!=
nil
{
return
0
,
fmt
.
Errorf
(
"
lineCounter Open File : %s"
,
err
)
return
0
,
fmt
.
Errorf
(
"
failed to open file %q: %w"
,
w
.
Filename
,
err
)
}
buf
:=
make
([]
byte
,
32
*
1024
)
count
:=
0
for
{
c
,
err
:=
r
.
Read
(
buf
)
count
+=
bytes
.
Count
(
buf
[
:
c
],
[]
byte
{
'\n'
})
...
...
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