mirror of
https://github.com/bettercap/bettercap
synced 2025-07-07 13:32:07 -07:00
fix: proxy module builtin log function now logs to the global events stream
This commit is contained in:
parent
abca005651
commit
28ca00e480
1 changed files with 1 additions and 5 deletions
|
@ -1,7 +1,6 @@
|
||||||
package modules
|
package modules
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
|
||||||
"github.com/evilsocket/bettercap-ng/log"
|
"github.com/evilsocket/bettercap-ng/log"
|
||||||
|
@ -31,11 +30,8 @@ func (s *ProxyScript) defineBuiltins() error {
|
||||||
// log something
|
// log something
|
||||||
s.VM.Set("log", func(call otto.FunctionCall) otto.Value {
|
s.VM.Set("log", func(call otto.FunctionCall) otto.Value {
|
||||||
for _, v := range call.ArgumentList {
|
for _, v := range call.ArgumentList {
|
||||||
fmt.Printf("%s", v.String())
|
log.Info("%s", v.String())
|
||||||
}
|
}
|
||||||
fmt.Println()
|
|
||||||
s.sess.Refresh()
|
|
||||||
|
|
||||||
return otto.Value{}
|
return otto.Value{}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue