diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-05-23 13:23:29 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-05-23 13:23:29 -0400 |
commit | 644e7fa065ba4e6f553998b10de6839301e943cd (patch) | |
tree | 29cc88c71b4d26b11bab6175612809bd77ffc327 | |
parent | be4883722f00ac71d4586f2e80557fd2ba055d24 (diff) |
Add debug logging to golang side
-rw-r--r-- | main.go | 6 | ||||
-rw-r--r-- | os.go | 4 |
2 files changed, 10 insertions, 0 deletions
@@ -5,6 +5,7 @@ import ( "fmt" "github.com/golang/protobuf/proto" "github.com/ry/v8worker2" + "io/ioutil" "log" "os" "runtime/pprof" @@ -34,6 +35,11 @@ func main() { } args = v8worker2.SetFlags(args) + // Unless the debug flag is specified, discard logs. + if !*flagDebug { + log.SetOutput(ioutil.Discard) + } + // Maybe start Golang CPU profiler. // Use --prof for profiling JS. if *flagGoProf != "" { @@ -3,6 +3,7 @@ package main import ( "github.com/golang/protobuf/proto" "io/ioutil" + "log" "net/url" "os" "path" @@ -35,6 +36,9 @@ func InitOS() { func ResolveModule(moduleSpecifier string, containingFile string) ( moduleName string, filename string, err error) { + + log.Printf("ResolveModule %s %s", moduleSpecifier, containingFile) + moduleUrl, err := url.Parse(moduleSpecifier) if err != nil { return |