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
3f1de576
authored
2014-04-04 09:49:55 +0800
by
astaxie
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix go run hello.go & console log
1 parent
f48ca96a
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
12 deletions
beego.go
config.go
logs/conn.go
logs/file.go
logs/smtp.go
beego.go
View file @
3f1de57
...
...
@@ -188,7 +188,7 @@ func initBeforeHttpRun() {
// if AppConfigPath not In the conf/app.conf reParse config
if
AppConfigPath
!=
filepath
.
Join
(
AppPath
,
"conf"
,
"app.conf"
)
{
err
:=
ParseConfig
()
if
err
!=
nil
{
if
err
!=
nil
&&
AppConfigPath
!=
filepath
.
Join
(
workPath
,
"conf"
,
"app.conf"
)
{
// configuration is critical to app, panic here if parse failed
panic
(
err
)
}
...
...
config.go
View file @
3f1de57
package
beego
import
(
"fmt"
"html/template"
"os"
"path/filepath"
...
...
@@ -143,9 +144,12 @@ func init() {
// init BeeLogger
BeeLogger
=
logs
.
NewLogger
(
10000
)
BeeLogger
.
SetLogger
(
"console"
,
""
)
err
:=
BeeLogger
.
SetLogger
(
"console"
,
""
)
if
err
!=
nil
{
fmt
.
Println
(
"init console log error:"
,
err
)
}
err
:
=
ParseConfig
()
err
=
ParseConfig
()
if
err
!=
nil
&&
!
os
.
IsNotExist
(
err
)
{
// for init if doesn't have app.conf will not panic
Info
(
err
)
...
...
logs/conn.go
View file @
3f1de57
...
...
@@ -29,9 +29,6 @@ func NewConn() LoggerInterface {
// init connection writer with json config.
// json config only need key "level".
func
(
c
*
ConnWriter
)
Init
(
jsonconfig
string
)
error
{
if
len
(
jsonconfig
)
==
0
{
return
nil
}
err
:=
json
.
Unmarshal
([]
byte
(
jsonconfig
),
c
)
if
err
!=
nil
{
return
err
...
...
logs/file.go
View file @
3f1de57
...
...
@@ -90,9 +90,6 @@ func NewFileWriter() LoggerInterface {
// "rotate":true
// }
func
(
w
*
FileLogWriter
)
Init
(
jsonconfig
string
)
error
{
if
len
(
jsonconfig
)
==
0
{
return
nil
}
err
:=
json
.
Unmarshal
([]
byte
(
jsonconfig
),
w
)
if
err
!=
nil
{
return
err
...
...
logs/smtp.go
View file @
3f1de57
...
...
@@ -38,9 +38,6 @@ func NewSmtpWriter() LoggerInterface {
// "level":LevelError
// }
func
(
s
*
SmtpWriter
)
Init
(
jsonconfig
string
)
error
{
if
len
(
jsonconfig
)
==
0
{
return
nil
}
err
:=
json
.
Unmarshal
([]
byte
(
jsonconfig
),
s
)
if
err
!=
nil
{
return
err
...
...
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