Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
3bcff779
authored
2013-06-25 12:54:51 +0200
by
Dobrosław Żybort
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Change: SetRotateMaxDay => SetRotateMaxDays
1 parent
b04813e4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
docs/zh/Quickstart.md
log.go
docs/zh/Quickstart.md
View file @
3bcff77
...
...
@@ -787,7 +787,7 @@ beego默认有一个初始化的BeeLogger对象输出内容到stdout中,你可
-
func (w
*FileLogWriter) SetRotateDaily(daily bool) *
FileLogWriter
-
func (w
*FileLogWriter) SetRotateLines(maxlines int) *
FileLogWriter
-
func (w
*FileLogWriter) SetRotateMaxDay
(maxday
int64) *
FileLogWriter
-
func (w
*FileLogWriter) SetRotateMaxDay
s(maxdays
int64) *
FileLogWriter
-
func (w
*FileLogWriter) SetRotateSize(maxsize int) *
FileLogWriter
但是这些函数调用必须在调用
`StartLogger`
之前。
...
...
log.go
View file @
3bcff77
...
...
@@ -26,7 +26,7 @@ type FileLogWriter struct {
// Rotate daily
daily
bool
maxday
int64
maxday
s
int64
daily_opendate
int
rotate
bool
...
...
@@ -40,7 +40,7 @@ func NewFileWriter(fname string, rotate bool) *FileLogWriter {
maxlines
:
1000000
,
maxsize
:
1
<<
28
,
//256 MB
daily
:
true
,
maxday
:
7
,
maxday
s
:
7
,
rotate
:
rotate
,
}
return
w
...
...
@@ -64,9 +64,9 @@ func (w *FileLogWriter) SetRotateDaily(daily bool) *FileLogWriter {
return
w
}
// Set rotate daily's log keep for maxday
,
other will delete
func
(
w
*
FileLogWriter
)
SetRotateMaxDay
(
maxday
int64
)
*
FileLogWriter
{
w
.
maxday
=
maxday
// Set rotate daily's log keep for maxday
s,
other will delete
func
(
w
*
FileLogWriter
)
SetRotateMaxDay
s
(
maxdays
int64
)
*
FileLogWriter
{
w
.
maxday
s
=
maxdays
return
w
}
...
...
@@ -155,7 +155,7 @@ func (w *FileLogWriter) DoRotate(rotate bool) error {
func
(
w
*
FileLogWriter
)
deleteOldLog
()
{
dir
:=
path
.
Dir
(
w
.
filename
)
filepath
.
Walk
(
dir
,
func
(
path
string
,
info
os
.
FileInfo
,
err
error
)
error
{
if
!
info
.
IsDir
()
&&
info
.
ModTime
()
.
Unix
()
<
(
time
.
Now
()
.
Unix
()
-
60
*
60
*
24
*
w
.
maxday
)
{
if
!
info
.
IsDir
()
&&
info
.
ModTime
()
.
Unix
()
<
(
time
.
Now
()
.
Unix
()
-
60
*
60
*
24
*
w
.
maxday
s
)
{
os
.
Remove
(
path
)
}
return
nil
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment