mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
Add debug logging to golang side
This commit is contained in:
parent
be4883722f
commit
644e7fa065
2 changed files with 10 additions and 0 deletions
6
main.go
6
main.go
|
@ -5,6 +5,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/golang/protobuf/proto"
|
"github.com/golang/protobuf/proto"
|
||||||
"github.com/ry/v8worker2"
|
"github.com/ry/v8worker2"
|
||||||
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"runtime/pprof"
|
"runtime/pprof"
|
||||||
|
@ -34,6 +35,11 @@ func main() {
|
||||||
}
|
}
|
||||||
args = v8worker2.SetFlags(args)
|
args = v8worker2.SetFlags(args)
|
||||||
|
|
||||||
|
// Unless the debug flag is specified, discard logs.
|
||||||
|
if !*flagDebug {
|
||||||
|
log.SetOutput(ioutil.Discard)
|
||||||
|
}
|
||||||
|
|
||||||
// Maybe start Golang CPU profiler.
|
// Maybe start Golang CPU profiler.
|
||||||
// Use --prof for profiling JS.
|
// Use --prof for profiling JS.
|
||||||
if *flagGoProf != "" {
|
if *flagGoProf != "" {
|
||||||
|
|
4
os.go
4
os.go
|
@ -3,6 +3,7 @@ package main
|
||||||
import (
|
import (
|
||||||
"github.com/golang/protobuf/proto"
|
"github.com/golang/protobuf/proto"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
"log"
|
||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
|
@ -35,6 +36,9 @@ func InitOS() {
|
||||||
|
|
||||||
func ResolveModule(moduleSpecifier string, containingFile string) (
|
func ResolveModule(moduleSpecifier string, containingFile string) (
|
||||||
moduleName string, filename string, err error) {
|
moduleName string, filename string, err error) {
|
||||||
|
|
||||||
|
log.Printf("ResolveModule %s %s", moduleSpecifier, containingFile)
|
||||||
|
|
||||||
moduleUrl, err := url.Parse(moduleSpecifier)
|
moduleUrl, err := url.Parse(moduleSpecifier)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue