Commit 380eba1d authored by Aaron Jacobs's avatar Aaron Jacobs

Added a simple Logf implementation. To be improved.

parent dbbb61ad
......@@ -299,6 +299,10 @@ func (o *commonOp) Context() context.Context {
return o.ctx
}
func (o *commonOp) Logf(format string, v ...interface{}) {
o.logger.Printf(format, v...)
}
func (o *commonOp) respondErr(err error) {
if err == nil {
panic("Expect non-nil here.")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment