diff --git a/loggermdl/loggerdefault.go b/loggermdl/loggerdefault.go index 64423391bf1729fb52dac600f44dfa92686a4955..0a5b40768a8e6c7a493d0cf676d7992e15b01b08 100755 --- a/loggermdl/loggerdefault.go +++ b/loggermdl/loggerdefault.go @@ -54,7 +54,7 @@ func LogError(args ...interface{}) { // LogPanic logs a message at level Panic on the standard logger. func LogPanic(args ...interface{}) { - log.Panic(args) + log.Panic(args...) } // // LogJSONObject Format string diff --git a/loggermdl/loggerdefault_test.go b/loggermdl/loggerdefault_test.go index aa43f3fc660e4dc2c46b5763b619e99096acc36c..e0d61b60809bf9901334f867a459f35a1e2bf975 100755 --- a/loggermdl/loggerdefault_test.go +++ b/loggermdl/loggerdefault_test.go @@ -4,7 +4,6 @@ package loggermdl import ( - "encoding/json" "fmt" "testing" @@ -46,56 +45,56 @@ func ExampleLogDebug() { //Output: // } -func TestLogJSONString(t *testing.T) { - a := `{"Age": 1,"Name": "sometext"}` +// func TestLogJSONString(t *testing.T) { +// a := `{"Age": 1,"Name": "sometext"}` - assert.NotPanics(t, func() { LogJSONString(a) }, "The code did panic") +// assert.NotPanics(t, func() { LogJSONString(a) }, "The code did panic") - //Output2: - // { - // "Age": 1, - // "Name": "sometext" - // } -} +// //Output2: +// // { +// // "Age": 1, +// // "Name": "sometext" +// // } +// } func ExampleLogHREnd() { LogHREnd() //Output: //<<<<<<<<<<<<<<<<<<<<<<< } -func TestLogJSONObject(t *testing.T) { - type MySt struct { - Name string - Age int - } - m := MySt{"sometext", 1} - // jsonUnmarshal(json.Marshal(m), &m) - - assert.NotPanics(t, func() { LogJSONObject(m) }, "The code did panic") - //Output1: - //{ - // "Age": 1, - // "Name": "sometext" - //} -} +// func TestLogJSONObject(t *testing.T) { +// type MySt struct { +// Name string +// Age int +// } +// m := MySt{"sometext", 1} +// // jsonUnmarshal(json.Marshal(m), &m) + +// assert.NotPanics(t, func() { LogJSONObject(m) }, "The code did panic") +// //Output1: +// //{ +// // "Age": 1, +// // "Name": "sometext" +// //} +// } -func TestLogJSONByte(t *testing.T) { // func ExampleLogJSONByte() { +// func TestLogJSONByte(t *testing.T) { // func ExampleLogJSONByte() { - type MySt struct { - Name string - Age int - } - m := MySt{"sometext", 1} - a, _ := json.Marshal(m) +// type MySt struct { +// Name string +// Age int +// } +// m := MySt{"sometext", 1} +// a, _ := json.Marshal(m) - assert.NotPanics(t, func() { LogJSONByte(a) }, "The code did panic") - //Output1: - // { - // "Age": 1, - // "Name": "sometext" - // } +// assert.NotPanics(t, func() { LogJSONByte(a) }, "The code did panic") +// //Output1: +// // { +// // "Age": 1, +// // "Name": "sometext" +// // } -} +// } func ExampleLogHRStart() { LogHRStart() //Output: