airshipui/pkg/log/log.go
Schiefelbein, Andrew 1dfb9036f8 log improvements & add sessionization
1. Fix the keepalive timeout
2. Added a retry to the client on refresh requests happeing
   before the backend was available to respond
3. Created the notion of a session so there's a link between one
   browser and all actions are related and contained
4. Added a custom logging service for the backend
5. Added a custom logging service for the client output:
   [airshipui][Debug] 8/14/2020, 2:35:24 PM - AppComponent -
                  Message received in app:  WebsocketMessage

The go logging is largely cribbed from CTL, but will mutate

Change-Id: Ie4242b8d720e7712d2f5a586c7812dfc66c5adba
2020-08-17 14:05:25 -05:00

72 lines
1.6 KiB
Go
Executable File

/*
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package log
import (
"io"
"log"
"os"
)
var (
debug = false
airshipLog = log.New(os.Stderr, "[airshipui] ", log.LstdFlags)
)
// Init initializes settings related to logging
func Init(debugFlag bool, out io.Writer) {
debug = debugFlag
airshipLog.SetOutput(out)
}
// Debug is a wrapper for log.Debug
func Debug(v ...interface{}) {
if debug {
airshipLog.Print(v...)
}
}
// Debugf is a wrapper for log.Debugf
func Debugf(format string, v ...interface{}) {
if debug {
airshipLog.Printf(format, v...)
}
}
// Print is a wrapper for log.Print
func Print(v ...interface{}) {
airshipLog.Print(v...)
}
// Printf is a wrapper for log.Printf
func Printf(format string, v ...interface{}) {
airshipLog.Printf(format, v...)
}
// Fatal is a wrapper for log.Fatal
func Fatal(v ...interface{}) {
airshipLog.Fatal(v...)
}
// Fatalf is a wrapper for log.Fatalf
func Fatalf(format string, v ...interface{}) {
airshipLog.Fatalf(format, v...)
}
// Writer returns log output writer object
func Writer() io.Writer {
return airshipLog.Writer()
}