8 lines
123 B
Go
8 lines
123 B
Go
package firefox
|
|
|
|
import "log"
|
|
|
|
func logf(format string, args ...interface{}) {
|
|
log.Printf("[firefox] "+format, args...)
|
|
}
|