Skip to content

Instantly share code, notes, and snippets.

@zikaeroh
Created November 13, 2019 23:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zikaeroh/618e23c7292123e62a65dbcb71d2c107 to your computer and use it in GitHub Desktop.
Save zikaeroh/618e23c7292123e62a65dbcb71d2c107 to your computer and use it in GitHub Desktop.
golang/go#35388 post-35243
[Trace - 15:31:05.695 PM] Sending request 'initialize - (0)'.
Params: {"processId":46918,"rootPath":"/home/jake/zikaeroh/hortbot/hortbot","rootUri":"file:///home/jake/zikaeroh/hortbot/hortbot","capabilities":{"workspace":{"applyEdit":true,"workspaceEdit":{"documentChanges":true,"resourceOperations":["create","rename","delete"],"failureHandling":"textOnlyTransactional"},"didChangeConfiguration":{"dynamicRegistration":true},"didChangeWatchedFiles":{"dynamicRegistration":true},"symbol":{"dynamicRegistration":true,"symbolKind":{"valueSet":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26]}},"executeCommand":{"dynamicRegistration":true},"configuration":true,"workspaceFolders":true},"textDocument":{"publishDiagnostics":{"relatedInformation":true},"synchronization":{"dynamicRegistration":true,"willSave":true,"willSaveWaitUntil":true,"didSave":true},"completion":{"dynamicRegistration":true,"contextSupport":true,"completionItem":{"snippetSupport":true,"commitCharactersSupport":true,"documentationFormat":["markdown","plaintext"],"deprecatedSupport":true,"preselectSupport":true},"completionItemKind":{"valueSet":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25]}},"hover":{"dynamicRegistration":true,"contentFormat":["markdown","plaintext"]},"signatureHelp":{"dynamicRegistration":true,"signatureInformation":{"documentationFormat":["markdown","plaintext"],"parameterInformation":{"labelOffsetSupport":true}}},"definition":{"dynamicRegistration":true,"linkSupport":true},"references":{"dynamicRegistration":true},"documentHighlight":{"dynamicRegistration":true},"documentSymbol":{"dynamicRegistration":true,"symbolKind":{"valueSet":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26]},"hierarchicalDocumentSymbolSupport":true},"codeAction":{"dynamicRegistration":true,"codeActionLiteralSupport":{"codeActionKind":{"valueSet":["","quickfix","refactor","refactor.extract","refactor.inline","refactor.rewrite","source","source.organizeImports"]}}},"codeLens":{"dynamicRegistration":true},"formatting":{"dynamicRegistration":true},"rangeFormatting":{"dynamicRegistration":true},"onTypeFormatting":{"dynamicRegistration":true},"rename":{"dynamicRegistration":true,"prepareSupport":true},"documentLink":{"dynamicRegistration":true},"typeDefinition":{"dynamicRegistration":true,"linkSupport":true},"implementation":{"dynamicRegistration":true,"linkSupport":true},"colorProvider":{"dynamicRegistration":true},"foldingRange":{"dynamicRegistration":true,"rangeLimit":5000,"lineFoldingOnly":true},"declaration":{"dynamicRegistration":true,"linkSupport":true}}},"initializationOptions":{},"trace":"off","workspaceFolders":[{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot","name":"hortbot"}]}
[Trace - 15:31:05.697 PM] Received response 'initialize - (0)' in 2ms.
Result: {"capabilities":{"textDocumentSync":{"openClose":true,"change":2,"save":{}},"completionProvider":{"triggerCharacters":["."]},"hoverProvider":true,"signatureHelpProvider":{"triggerCharacters":["(",","]},"definitionProvider":true,"typeDefinitionProvider":true,"implementationProvider":true,"referencesProvider":true,"documentHighlightProvider":true,"documentSymbolProvider":true,"codeActionProvider":{"codeActionKinds":["quickfix","source.organizeImports"]},"documentLinkProvider":{},"documentFormattingProvider":true,"renameProvider":{"prepareProvider":true},"foldingRangeProvider":true,"executeCommandProvider":{"commands":["tidy"]},"workspace":{"workspaceFolders":{"supported":true,"changeNotifications":"workspace/didChangeWorkspaceFolders"}}},"custom":null}
[Trace - 15:31:05.699 PM] Sending notification 'initialized'.
Params: {}
[Trace - 15:31:05.699 PM] Received request 'client/registerCapability - (1)'.
Params: {"registrations":[{"id":"workspace/didChangeConfiguration","method":"workspace/didChangeConfiguration"},{"id":"workspace/didChangeWorkspaceFolders","method":"workspace/didChangeWorkspaceFolders"}]}
[Trace - 15:31:05.702 PM] Sending notification 'textDocument/didOpen'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","languageId":"go","version":1,"text":"package bot\n\nimport (\n\t\"context\"\n\t\"time\"\n\n\t\"github.com/hortbot/hortbot/internal/bnsq\"\n\t\"github.com/hortbot/hortbot/internal/cli\"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/botflags\"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/jaegerflags\"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/nsqflags\"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/redisflags\"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/sqlflags\"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/twitchflags\"\n\t\"github.com/hortbot/hortbot/internal/pkg/ctxlog\"\n\t\"github.com/hortbot/hortbot/internal/pkg/errgroupx\"\n\t\"go.opencensus.io/trace\"\n\t\"go.uber.org/zap\"\n\t\"golang.org/x/sync/semaphore\"\n)\n\ntype config struct {\n\tcli.Common\n\tSQL sqlflags.SQL\n\tTwitch twitchflags.Twitch\n\tRedis redisflags.Redis\n\tBot botflags.Bot\n\tNSQ nsqflags.NSQ\n\tJaeger jaegerflags.Jaeger\n}\n\nfunc Run(args []string) {\n\tcli.Run(\"bot\", args, &config{\n\t\tCommon: cli.DefaultCommon,\n\t\tSQL: sqlflags.DefaultSQL,\n\t\tTwitch: twitchflags.DefaultTwitch,\n\t\tRedis: redisflags.DefaultRedis,\n\t\tBot: botflags.DefaultBot,\n\t\tNSQ: nsqflags.DefaultNSQ,\n\t\tJaeger: jaegerflags.DefaultJaeger,\n\t})\n}\n\nfunc (config *config) Main(ctx context.Context, _ []string) {\n\tdefer config.Jaeger.Init(ctx, \"bot\", config.Debug)()\n\n\tconnector := config.SQL.Connector(ctx)\n\tconnector = config.Jaeger.TraceDB(config.Debug, connector)\n\tdb := config.SQL.Open(ctx, connector)\n\trdb := config.Redis.Client()\n\ttwitchAPI := config.Twitch.Client()\n\tsender := config.NSQ.NewSendMessagePublisher()\n\tnotifier := config.NSQ.NewNotifyPublisher()\n\n\tb := config.Bot.New(ctx, db, rdb, sender, notifier, twitchAPI)\n\tdefer b.Stop()\n\n\tsem := semaphore.NewWeighted(int64(config.Bot.Workers))\n\n\tg := errgroupx.FromContext(ctx)\n\n\tincomingSub := config.NSQ.NewIncomingSubscriber(15*time.Second, func(i *bnsq.Incoming, metadata *bnsq.Metadata) error {\n\t\tctx, span := trace.StartSpanWithRemoteParent(ctx, \"OnIncoming\", metadata.ParentSpan())\n\t\tdefer span.End()\n\n\t\tif err := sem.Acquire(ctx, 1); err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tg.Go(func(ctx context.Context) error {\n\t\t\tctx, span := trace.StartSpanWithRemoteParent(ctx, \"Worker\", span.SpanContext())\n\t\t\tdefer span.End()\n\n\t\t\tdefer sem.Release(1)\n\t\t\tb.Handle(ctx, i.Origin, i.Message)\n\t\t\treturn ctx.Err()\n\t\t})\n\n\t\treturn nil\n\t})\n\n\tg.Go(sender.Run)\n\tg.Go(notifier.Run)\n\tg.Go(incomingSub.Run)\n\n\tif err := g.WaitIgnoreStop(); err != nil {\n\t\tctxlog.Info(ctx, \"exiting\", zap.Error(err))\n\t}\n}\n"}}
[Trace - 15:31:05.703 PM] Sending response 'client/registerCapability - (1)' took 3ms.
Result: {}
[Trace - 15:31:05.718 PM] Sending request 'textDocument/codeAction - (1)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[]}}
[Trace - 15:31:05.721 PM] Sending request 'textDocument/documentLink - (2)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 15:31:05.778 PM] Received request 'workspace/configuration - (2)'.
Params: {"items":[{"scopeUri":"file:///home/jake/zikaeroh/hortbot/hortbot","section":"gopls"},{"scopeUri":"file:///home/jake/zikaeroh/hortbot/hortbot","section":"gopls-hortbot"}]}
[Trace - 15:31:05.778 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:05 Build info\n----------\ngolang.org/x/tools/gopls master\n golang.org/x/tools/gopls@v0.1.8-0.20191113232020-e2727e816f5a h1:v6fc4bPwdHXa3wvspTMYjP8m6gostazDexYLfN2fBpw=\n github.com/BurntSushi/toml@v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=\n github.com/sergi/go-diff@v1.0.0 h1:Kpca3qRNrduNnOQeazBd0ysaKrUJiIuISHxogkT9RPQ=\n golang.org/x/sync@v0.0.0-20190423024810-112230192c58 h1:8gQV6CLnAEikrhgkHFbMAEhagSSnXWGV915qUMm9mrU=\n golang.org/x/tools@v0.0.0-20191113232020-e2727e816f5a h1:3IG7HNvPBDvrxpnTWA6zpeNCS5ydX6cdt6oOiGlC8qg=\n golang.org/x/xerrors@v0.0.0-20190717185122-a985d3407aa7 h1:9zdDQZ7Thm29KFXgAX/+yaf3eVbP7djjWp/dXAppNCc=\n honnef.co/go/tools@v0.0.1-2019.2.3 h1:3JgtbtFHMiCmsznwGVTUWbgGov+pVqnlf1dEJTNAXeM=\n\nGo info\n-------\ngo version go1.13.4 linux/amd64\n\nGO111MODULE=\"\"\nGOARCH=\"amd64\"\nGOBIN=\"\"\nGOCACHE=\"/home/jake/.cache/go-build\"\nGOENV=\"/home/jake/.config/go/env\"\nGOEXE=\"\"\nGOFLAGS=\"\"\nGOHOSTARCH=\"amd64\"\nGOHOSTOS=\"linux\"\nGONOPROXY=\"\"\nGONOSUMDB=\"\"\nGOOS=\"linux\"\nGOPATH=\"/home/jake/go\"\nGOPRIVATE=\"\"\nGOPROXY=\"https://proxy.golang.org,direct\"\nGOROOT=\"/usr/lib/go\"\nGOSUMDB=\"sum.golang.org\"\nGOTMPDIR=\"\"\nGOTOOLDIR=\"/usr/lib/go/pkg/tool/linux_amd64\"\nGCCGO=\"gccgo\"\nAR=\"ar\"\nCC=\"gcc\"\nCXX=\"g++\"\nCGO_ENABLED=\"1\"\nGOMOD=\"/home/jake/zikaeroh/hortbot/hortbot/go.mod\"\nCGO_CFLAGS=\"-g -O2\"\nCGO_CPPFLAGS=\"\"\nCGO_CXXFLAGS=\"-g -O2\"\nCGO_FFLAGS=\"-g -O2\"\nCGO_LDFLAGS=\"-g -O2\"\nPKG_CONFIG=\"pkg-config\"\nGOGCCFLAGS=\"-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build758100970=/tmp/go-build -gno-record-gcc-switches\"\n"}
[Trace - 15:31:05.783 PM] Sending response 'workspace/configuration - (2)' took 5ms.
Result: [{"usePlaceholders":false,"completeUnimported":true,"watchFileChanges":true,"deepCompletion":true,"go-diff":true},null]
[Trace - 15:31:05.923 PM] Sending request 'textDocument/foldingRange - (3)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 15:31:06.815 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/migrations\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/db/migrations/migrations.go]"}
[Trace - 15:31:06.815 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/web\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/web/middleware.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/session.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/web.go]"}
[Trace - 15:31:06.815 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/sqlflags\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/sqlflags/sqlargs.go]"}
[Trace - 15:31:06.816 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/twitchflags\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/twitchflags/twitchargs.go]"}
[Trace - 15:31:06.816 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackages = 117"}
[Trace - 15:31:06.816 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/confconvert\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confconvert/helpers.go /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confconvert/main.go /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confconvert/site_db.go /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confconvert/twitch.go]"}
[Trace - 15:31:06.816 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/confimport\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confimport/confimport.go]"}
[Trace - 15:31:06.816 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/ircx\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ircx/ircx.go]"}
[Trace - 15:31:06.816 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/birc/breq\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/birc/breq/breq.go]"}
[Trace - 15:31:06.816 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/confimport\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/confimport/confimport.go]"}
[Trace - 15:31:06.816 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/ctxlog\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ctxlog/ctxlog.go]"}
[Trace - 15:31:06.816 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/birc\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/birc/birc.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/config.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/connecton.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/dialer.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/pool.go]"}
[Trace - 15:31:06.816 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/twitchx\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/twitchx/twitchx.go]"}
[Trace - 15:31:06.816 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/ircflags\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/ircflags/ircargs.go]"}
[Trace - 15:31:06.816 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/irc\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/irc/main.go]"}
[Trace - 15:31:06.816 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/web/mid\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/web/mid/mid.go]"}
[Trace - 15:31:06.816 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/web/templates\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/about.qtpl.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/base.qtpl.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/channel.qtpl.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/channels.qtpl.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/docs.qtpl.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/gen.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/index.qtpl.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/login.qtpl.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/sidebar_scripts.qtpl.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bnsq\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/helpers.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/incoming.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/message.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/notify.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/publisher.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/send_message.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/subscriber.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/urban\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/urban/urban.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/version\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/version/version.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/cli.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/xkcd\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/xkcd/xkcd.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/youtube\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/youtube/youtube.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cbp\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cbp/cbp.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/models\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/db/models/autoreplies.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/blocked_users.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/boil_queries.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/boil_table_names.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/boil_types.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/channels.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/command_infos.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/command_lists.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/custom_commands.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/psql_upsert.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/quotes.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/repeated_commands.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/scheduled_commands.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/twitch_tokens.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/variables.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/findlinks\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/findlinks/findlinks.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/linkmatch\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/linkmatch/linkmatch.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/modelsx\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/db/modelsx/channel.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/modelsx/modelsx.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/redis\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/bot.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/dedupe.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/irc.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/keys.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_bool.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_rate.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_set.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/public_join.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/redis.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/web.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/steam\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/steam/steam.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/recache\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/recache/recache.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/lastfm\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/lastfm/lastfm.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/errgroupx\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/errgroupx/errgroupx.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/repeat\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/repeat/repeat.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/tinyurl\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/tinyurl/tinyurl.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/oauth2x\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/oauth2x/oauth2x.go]"}
[Trace - 15:31:06.817 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/botflags\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/botflags/botargs.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/jaegerflags\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/jaegerflags/jaegerargs.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/bot/access_level.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/accesslevel_string.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/actions.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/autoreplies.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/bot.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/builtin_commands.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_admin.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_autoreplies.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_command.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_filters.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_fun.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_lastfm.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_levels.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_list.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_management.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_moderation.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_quote.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_raffle.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_random.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_repeat.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_schedule.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_settings.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_steam.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_twitch.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_var.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_website.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/correlation.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/custom_command.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/deps.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/filters.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/handle.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/helpers.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/interfaces.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/rdb.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/repeat.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/session.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/sessiontype_string.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/testing.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/user_state.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/var.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/nsqflags\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/nsqflags/nsqargs.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/twitch\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/cache.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/channel.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/chatters.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/helpers.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/http.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/streams.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/twitch.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/users.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/redisflags\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/redisflags/redisargs.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/migrations/esc\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/db/migrations/esc/bindata.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/migrations/esc/esc.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/extralife\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/extralife/extralife.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/lastfm/lastfmfakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/lastfm/lastfmfakes/fake_api.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/singleproc\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/singleproc/singleproc.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/web\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/web/main.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/main.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bot/botfakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/bot/botfakes/fake_notifier.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/botfakes/fake_rand.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/botfakes/fake_sender.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/urban/urbanfakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/urban/urbanfakes/fake_api.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/tinyurl/tinyurlfakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/tinyurl/tinyurlfakes/fake_api.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/extralife/extralifefakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/extralife/extralifefakes/fake_api.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/steam/steamfakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/steam/steamfakes/fake_api.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/webflags\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/webflags/webargs.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/twitch/twitchfakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/twitchfakes/fake_api.go]"}
[Trace - 15:31:06.818 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/youtube/youtubefakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/youtube/youtubefakes/fake_api.go]"}
[Trace - 15:31:06.821 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/testutil\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/testutil.go]"}
[Trace - 15:31:06.822 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/xkcd/xkcdfakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/xkcd/xkcdfakes/fake_api.go]"}
[Trace - 15:31:06.823 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/steam_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/steam/steam_test.go]"}
[Trace - 15:31:06.823 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bot/btest\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/apis.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/clock.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/db.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/fakes.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/irc.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/script_tester.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/twitch.go]"}
[Trace - 15:31:06.823 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/ctxhack\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ctxhack/ctxhack.go]"}
[Trace - 15:31:06.824 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/recache_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/recache/recache_test.go]"}
[Trace - 15:31:06.824 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/fakeirc\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/helper.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/server.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/tls.go]"}
[Trace - 15:31:06.824 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/oauth2x/oauth2xfakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/oauth2x/oauth2xfakes/fake_token_source.go]"}
[Trace - 15:31:06.824 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/testutil/nsqtest\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/nsqtest/nsqtest.go]"}
[Trace - 15:31:06.825 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/testutil/pgtest\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/pgtest/pgtest.go]"}
[Trace - 15:31:06.825 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/testutil/redistest\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/redistest/redistest.go]"}
[Trace - 15:31:06.825 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/birc_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/birc/config_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/connection_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/dialer_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/pool_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/shared_test.go]"}
[Trace - 15:31:06.825 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/birc.test\n\tfiles = [/home/jake/.cache/go-build/44/449e1a355fe51b9dfb7ef5c3f6feaa64c0226d927c3b2eb0ee9995a3fd7881ce-d]"}
[Trace - 15:31:06.825 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/birc/breq\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/birc/breq/breq.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/breq/breq_test.go]"}
[Trace - 15:31:06.825 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/birc/breq.test\n\tfiles = [/home/jake/.cache/go-build/a8/a80d214598d924d91af3a36ffcde1b47e2be0601d6086d903fcdb63031bd5212-d]"}
[Trace - 15:31:06.826 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bnsq\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/helpers.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/incoming.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/message.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/notify.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/publisher.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/send_message.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/subscriber.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/export_test.go]"}
[Trace - 15:31:06.827 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bnsq_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/incoming_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/notify_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/send_message_test.go]"}
[Trace - 15:31:06.827 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bnsq.test\n\tfiles = [/home/jake/.cache/go-build/ed/ed3164eec202a876f51e771279b45a177324dae4c4a1b80282fef8d07e5f86d0-d]"}
[Trace - 15:31:06.827 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/bot/access_level.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/accesslevel_string.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/actions.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/autoreplies.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/bot.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/builtin_commands.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_admin.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_autoreplies.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_command.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_filters.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_fun.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_lastfm.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_levels.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_list.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_management.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_moderation.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_quote.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_raffle.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_random.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_repeat.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_schedule.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_settings.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_steam.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_twitch.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_var.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_website.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/correlation.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/custom_command.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/deps.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/filters.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/handle.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/helpers.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/interfaces.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/rdb.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/repeat.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/session.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/sessiontype_string.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/testing.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/user_state.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/var.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/access_level_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/export_test.go]"}
[Trace - 15:31:06.827 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bot_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/bot/bench_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/bot_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/main_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/script_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/testcmd_test.go]"}
[Trace - 15:31:06.827 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bot.test\n\tfiles = [/home/jake/.cache/go-build/47/479319ad1cc8f73778af99b9f17fc38d7303d652de7daf0a56b5bdf0c33f7e3b-d]"}
[Trace - 15:31:06.827 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cbp_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cbp/cbp_test.go]"}
[Trace - 15:31:06.827 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cbp.test\n\tfiles = [/home/jake/.cache/go-build/72/729ecc894a1bf98486976c6e3b82f7ca6206ca3494be1b1b012a4175df9092d0-d]"}
[Trace - 15:31:06.827 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/migrations_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/db/migrations/migrations_test.go]"}
[Trace - 15:31:06.828 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/migrations.test\n\tfiles = [/home/jake/.cache/go-build/9e/9e8846ac4cf1765248455e0ca27336d65a4cf5f7bc96a3db2b6a26998327f782-d]"}
[Trace - 15:31:06.828 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/redis\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/bot.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/dedupe.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/irc.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/keys.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_bool.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_rate.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_set.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/public_join.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/redis.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/web.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/keys_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_bool_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_rate_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_set_test.go]"}
[Trace - 15:31:06.828 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/redis_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/bot_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/dedupe_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/irc_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/public_join_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/web_test.go]"}
[Trace - 15:31:06.828 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/redis.test\n\tfiles = [/home/jake/.cache/go-build/99/9942599c62884849cc08d6b67915ef27e1b0595282adf33009b62c840ae24f3c-d]"}
[Trace - 15:31:06.828 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/extralife_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/extralife/extralife_test.go]"}
[Trace - 15:31:06.828 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/extralife.test\n\tfiles = [/home/jake/.cache/go-build/ae/ae1b40cd21fcf3b25ab77bc19939a8f02c31b2d72e869418b9bfd0ea2e828c28-d]"}
[Trace - 15:31:06.829 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/testutil/miniredistest\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/miniredistest/miniredistest.go]"}
[Trace - 15:31:06.830 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/lastfm_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/lastfm/lastfm_test.go]"}
[Trace - 15:31:06.830 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/lastfm.test\n\tfiles = [/home/jake/.cache/go-build/32/32df16d3e210a510043f013176b3cacc4d1827b30e1c4020bb976108e5f7981b-d]"}
[Trace - 15:31:06.830 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/errgroupx.test\n\tfiles = [/home/jake/.cache/go-build/1d/1d2d016717473279731bacbf6cc41be99d10bc1e4d0068b92538b66dd002a6c6-d]"}
[Trace - 15:31:06.830 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/steam.test\n\tfiles = [/home/jake/.cache/go-build/2e/2efd9496a7674857f1a8b23fd391bfb90838c10cdb70b744641f1b7ba5c10c7c-d]"}
[Trace - 15:31:06.830 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/tinyurl_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/tinyurl/tinyurl_test.go]"}
[Trace - 15:31:06.830 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/tinyurl.test\n\tfiles = [/home/jake/.cache/go-build/99/996a7ea007c669f5589857dbfcb7d2b9b20672b5f1bc179574e0835dd12b8597-d]"}
[Trace - 15:31:06.830 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/twitch\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/cache.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/channel.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/chatters.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/helpers.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/http.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/streams.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/twitch.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/users.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/helpers_test.go]"}
[Trace - 15:31:06.830 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/twitch_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/cache_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/channel_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/chatters_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/fake_twitch_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/streams_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/twitch_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/users_test.go]"}
[Trace - 15:31:06.831 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/twitch.test\n\tfiles = [/home/jake/.cache/go-build/46/4649e8947eb0d533542d956be7161f6f877ad72d7459d195feb34465bb2f510b-d]"}
[Trace - 15:31:06.831 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/urban_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/urban/urban_test.go]"}
[Trace - 15:31:06.831 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/urban.test\n\tfiles = [/home/jake/.cache/go-build/06/060a1917760e21f5242a0d055e230c6c3ea1aaa29909bbf1f962eba51505a493-d]"}
[Trace - 15:31:06.831 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/xkcd_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/xkcd/xkcd_test.go]"}
[Trace - 15:31:06.831 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/xkcd.test\n\tfiles = [/home/jake/.cache/go-build/2a/2a24b2da96f8c34b71811cbd8872b7cafd9ac21da00dbdccc2d75b5db90ade35-d]"}
[Trace - 15:31:06.831 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/ctxhack\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ctxhack/ctxhack.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ctxhack/ctxhack_test.go]"}
[Trace - 15:31:06.831 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/ctxhack.test\n\tfiles = [/home/jake/.cache/go-build/f7/f7cb8f249ec2fa90c8b83d6429f1003d0da18267f018b99fc8ab98aaa4560093-d]"}
[Trace - 15:31:06.831 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/errgroupx_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/errgroupx/errgroupx_test.go]"}
[Trace - 15:31:06.831 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/ircx.test\n\tfiles = [/home/jake/.cache/go-build/84/844cd46d79b2edb56cad61822f5d5c8544d92aa299dc97d5a0db5807ae65615b-d]"}
[Trace - 15:31:06.831 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/fakeirc\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/helper.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/server.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/tls.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/helper_test.go]"}
[Trace - 15:31:06.832 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/fakeirc_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/server_test.go]"}
[Trace - 15:31:06.832 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/fakeirc.test\n\tfiles = [/home/jake/.cache/go-build/e7/e74659b1e3ced26c53bfbf3d2b73edb98d9c0eee1331ec7e43501c6a273b7b01-d]"}
[Trace - 15:31:06.832 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/findlinks_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/findlinks/findlinks_test.go]"}
[Trace - 15:31:06.832 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/findlinks.test\n\tfiles = [/home/jake/.cache/go-build/ae/ae7f518dca0f877b8264213f1d3e6c2173fa941e53c3314bf90bbb98240b2505-d]"}
[Trace - 15:31:06.832 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/ircx\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ircx/ircx.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ircx/ircx_test.go]"}
[Trace - 15:31:06.832 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/oauth2x.test\n\tfiles = [/home/jake/.cache/go-build/e5/e5fa3bfd21a0bc296f3802dc776f1143db52cd157663ec5d747386cb363ce78c-d]"}
[Trace - 15:31:06.832 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/linkmatch_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/linkmatch/linkmatch_test.go]"}
[Trace - 15:31:06.832 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/linkmatch.test\n\tfiles = [/home/jake/.cache/go-build/e1/e1f3241e79f270a8094a97e6bd572e093a0cb075c72482b5e8a692e6181c3e53-d]"}
[Trace - 15:31:06.832 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/oauth2x_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/oauth2x/oauth2x_test.go]"}
[Trace - 15:31:06.832 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/recache.test\n\tfiles = [/home/jake/.cache/go-build/3f/3fefbe12098cf98dfeb9a520c67a52cf351c96f807779059bb0547387396c20f-d]"}
[Trace - 15:31:06.832 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/repeat_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/repeat/cron_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/repeat/repeat_test.go]"}
[Trace - 15:31:06.839 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/repeat.test\n\tfiles = [/home/jake/.cache/go-build/15/15f8dbf930cd33f7c8ed5a4bf4519d4379f2473e166bb9713bec1097f809a316-d]"}
[Trace - 15:31:07.453 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:07 go/packages.Load\n\tpackages = 1"}
[Trace - 15:31:07.453 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:07 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 15:31:07.483 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:07 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 15:31:07.484 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:07 go/packages.Load\n\tpackages = 1"}
[Trace - 15:31:08.327 PM] Received response 'textDocument/codeAction - (1)' in 2608ms.
Result: {}
[Trace - 15:31:08.330 PM] Received response 'textDocument/documentLink - (2)' in 2609ms.
Result: [{"range":{"start":{"line":3,"character":1},"end":{"line":3,"character":10}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":1},"end":{"line":4,"character":7}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":1},"end":{"line":6,"character":43}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":1},"end":{"line":7,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":1},"end":{"line":8,"character":57}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":1},"end":{"line":9,"character":60}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":1},"end":{"line":10,"character":57}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":11,"character":1},"end":{"line":11,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":1},"end":{"line":12,"character":57}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":1},"end":{"line":13,"character":60}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":1},"end":{"line":14,"character":49}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":1},"end":{"line":15,"character":52}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":1},"end":{"line":16,"character":25}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":17,"character":1},"end":{"line":17,"character":18}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":18,"character":1},"end":{"line":18,"character":30}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 15:31:08.334 PM] Received response 'textDocument/foldingRange - (3)' in 2410ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 15:31:08.406 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[]}
[Trace - 15:31:15.790 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":2},"contentChanges":[{"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"rangeLength":0,"text":"\n\t\"go.opencensus.io/trace\""},{"range":{"start":{"line":16,"character":0},"end":{"line":17,"character":0}},"rangeLength":26,"text":""}]}
[Trace - 15:31:15.905 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":3},"contentChanges":[{"range":{"start":{"line":16,"character":18},"end":{"line":16,"character":18}},"rangeLength":0,"text":"\n\t\"github.com/hortbot/hortbot/internal/pkg/errgroupx\""},{"range":{"start":{"line":15,"character":0},"end":{"line":16,"character":0}},"rangeLength":53,"text":""}]}
[Trace - 15:31:15.909 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:15 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:16.031 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":4},"contentChanges":[{"range":{"start":{"line":15,"character":18},"end":{"line":15,"character":18}},"rangeLength":0,"text":"\n\t\"github.com/hortbot/hortbot/internal/pkg/ctxlog\""},{"range":{"start":{"line":14,"character":0},"end":{"line":15,"character":0}},"rangeLength":50,"text":""}]}
[Trace - 15:31:16.034 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:16 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:16.169 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":5},"contentChanges":[{"range":{"start":{"line":14,"character":18},"end":{"line":14,"character":18}},"rangeLength":0,"text":"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/twitchflags\""},{"range":{"start":{"line":13,"character":0},"end":{"line":14,"character":0}},"rangeLength":61,"text":""}]}
[Trace - 15:31:16.180 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:16 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:16.309 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":6},"contentChanges":[{"range":{"start":{"line":13,"character":18},"end":{"line":13,"character":18}},"rangeLength":0,"text":"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/sqlflags\""},{"range":{"start":{"line":12,"character":0},"end":{"line":13,"character":0}},"rangeLength":58,"text":""}]}
[Trace - 15:31:16.324 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:16 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:16.452 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":7},"contentChanges":[{"range":{"start":{"line":12,"character":18},"end":{"line":12,"character":18}},"rangeLength":0,"text":"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/redisflags\""},{"range":{"start":{"line":11,"character":0},"end":{"line":12,"character":0}},"rangeLength":60,"text":""}]}
[Trace - 15:31:16.455 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:16 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:16.594 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":8},"contentChanges":[{"range":{"start":{"line":11,"character":18},"end":{"line":11,"character":18}},"rangeLength":0,"text":"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/nsqflags\""},{"range":{"start":{"line":10,"character":0},"end":{"line":11,"character":0}},"rangeLength":58,"text":""}]}
[Trace - 15:31:16.597 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:16 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:16.745 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":9},"contentChanges":[{"range":{"start":{"line":10,"character":18},"end":{"line":10,"character":18}},"rangeLength":0,"text":"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/jaegerflags\""},{"range":{"start":{"line":9,"character":0},"end":{"line":10,"character":0}},"rangeLength":61,"text":""}]}
[Trace - 15:31:16.748 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:16 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:16.784 PM] Sending request 'textDocument/documentLink - (4)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 15:31:16.785 PM] Received response 'textDocument/documentLink - (4)' in 0ms.
Result: [{"range":{"start":{"line":3,"character":1},"end":{"line":3,"character":10}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":1},"end":{"line":4,"character":7}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":1},"end":{"line":6,"character":43}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":1},"end":{"line":7,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":1},"end":{"line":8,"character":57}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":1},"end":{"line":9,"character":60}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":1},"end":{"line":10,"character":57}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":11,"character":1},"end":{"line":11,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":1},"end":{"line":12,"character":57}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":1},"end":{"line":13,"character":60}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":1},"end":{"line":14,"character":49}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":1},"end":{"line":15,"character":52}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":1},"end":{"line":16,"character":18}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":17,"character":1},"end":{"line":17,"character":25}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":18,"character":1},"end":{"line":18,"character":30}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 15:31:16.942 PM] Sending request 'textDocument/foldingRange - (5)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 15:31:16.942 PM] Received response 'textDocument/foldingRange - (5)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 15:31:16.993 PM] Sending request 'textDocument/codeAction - (6)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":9,"character":18},"end":{"line":9,"character":18}},"context":{"diagnostics":[]}}
[Trace - 15:31:17.208 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:17 go/packages.Load\n\tpackages = 1"}
[Trace - 15:31:17.208 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:17 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 15:31:17.210 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[]}
[Trace - 15:31:17.215 PM] Sending request 'textDocument/codeAction - (7)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":0,"character":0},"end":{"line":89,"character":0}},"context":{"diagnostics":[]}}
[Trace - 15:31:17.421 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:17 go/packages.Load\n\tpackages = 1"}
[Trace - 15:31:17.421 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:17 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 15:31:17.423 PM] Received response 'textDocument/codeAction - (6)' in 430ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":2,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":16,"character":5},"end":{"line":17,"character":5}},"newText":""},{"range":{"start":{"line":17,"character":24},"end":{"line":17,"character":24}},"newText":"\"\n\t\"go.uber.org/zap"}]}]}}]
[Trace - 15:31:17.426 PM] Received response 'textDocument/codeAction - (7)' in 211ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":2,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":16,"character":5},"end":{"line":17,"character":5}},"newText":""},{"range":{"start":{"line":17,"character":24},"end":{"line":17,"character":24}},"newText":"\"\n\t\"go.uber.org/zap"}]}]}}]
[Trace - 15:31:17.435 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":10},"contentChanges":[{"range":{"start":{"line":17,"character":24},"end":{"line":17,"character":24}},"rangeLength":0,"text":"\"\n\t\"go.uber.org/zap"},{"range":{"start":{"line":16,"character":5},"end":{"line":17,"character":5}},"rangeLength":53,"text":""}]}
[Trace - 15:31:17.436 PM] Sending request 'textDocument/formatting - (8)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"options":{"tabSize":4,"insertSpaces":false}}
[Trace - 15:31:17.631 PM] Sending request 'textDocument/foldingRange - (9)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 15:31:18.130 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:18 go/packages.Load\n\tpackages = 1"}
[Trace - 15:31:18.130 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:18 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 15:31:18.131 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:18 no dep handle: no metadata for gitopencensus.io/trace\n\tpackage = gitopencensus.io/trace"}
[Trace - 15:31:18.138 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[{"range":{"start":{"line":16,"character":1},"end":{"line":16,"character":25}},"severity":1,"source":"compiler","message":"could not import gitopencensus.io/trace (no package for import gitopencensus.io/trace)"},{"range":{"start":{"line":17,"character":1},"end":{"line":17,"character":18}},"severity":1,"source":"compiler","message":"zap redeclared in this block"},{"range":{"start":{"line":9,"character":1},"end":{"line":9,"character":18}},"severity":1,"source":"compiler","message":"other declaration of zap"},{"range":{"start":{"line":59,"character":6},"end":{"line":59,"character":27}},"severity":1,"source":"compiler","message":"undeclared name: errgroupx"}]}
[Trace - 15:31:18.193 PM] Sending notification '$/cancelRequest'.
Params: {"id":8}
[Error - 15:31:18.196 PM] Received #8 go [list -e -json -compiled=true -test=true -export=false -deps=true -find=false -mod=readonly -- gitopencensus.io/trace]: signal: killed:
[Trace - 15:31:18.196 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:18 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:18.196 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:18 : context canceled"}
[Trace - 15:31:18.196 PM] Received response 'textDocument/foldingRange - (9)' in 564ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 15:31:18.250 PM] Sending notification 'textDocument/didSave'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":10}}
[Trace - 15:31:18.395 PM] Sending request 'textDocument/codeAction - (10)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":9,"character":18},"end":{"line":9,"character":18}},"context":{"diagnostics":[{"range":{"start":{"line":9,"character":1},"end":{"line":9,"character":18}},"message":"other declaration of zap","severity":1,"source":"compiler"}]}}
[Trace - 15:31:18.432 PM] Sending request 'textDocument/documentLink - (11)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 15:31:20.746 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:20 go/packages.Load\n\tpackages = 1"}
[Trace - 15:31:20.746 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:20 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 15:31:21.965 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:21 go/packages.Load\n\tpackages = 1"}
[Trace - 15:31:21.965 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:21 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 15:31:21.965 PM] Received response 'textDocument/codeAction - (10)' in 3570ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":10,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":9,"character":3},"end":{"line":10,"character":3}},"newText":""},{"range":{"start":{"line":15,"character":48},"end":{"line":15,"character":48}},"newText":"\"\n\t\"github.com/hortbot/hortbot/internal/pkg/errgroupx"}]}]}}]
[Trace - 15:31:21.966 PM] Received response 'textDocument/documentLink - (11)' in 3533ms.
Result: [{"range":{"start":{"line":3,"character":1},"end":{"line":3,"character":10}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":1},"end":{"line":4,"character":7}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":1},"end":{"line":6,"character":43}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":1},"end":{"line":7,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":1},"end":{"line":8,"character":57}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":1},"end":{"line":9,"character":18}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":10,"character":1},"end":{"line":10,"character":60}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":11,"character":1},"end":{"line":11,"character":57}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":12,"character":1},"end":{"line":12,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":13,"character":1},"end":{"line":13,"character":57}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":14,"character":1},"end":{"line":14,"character":60}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":15,"character":1},"end":{"line":15,"character":49}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":16,"character":1},"end":{"line":16,"character":25}},"target":"https://godoc.org/gitopencensus.io/trace"},{"range":{"start":{"line":17,"character":1},"end":{"line":17,"character":18}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":18,"character":1},"end":{"line":18,"character":30}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 15:31:26.657 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":11},"contentChanges":[{"range":{"start":{"line":16,"character":24},"end":{"line":17,"character":17}},"rangeLength":19,"text":""},{"range":{"start":{"line":16,"character":5},"end":{"line":16,"character":5}},"rangeLength":0,"text":"hub.com/hortbot/hortbot/internal/pkg/errgroupx\"\n\t\"go."}]}
[Trace - 15:31:26.850 PM] Sending request 'textDocument/foldingRange - (12)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 15:31:26.851 PM] Received response 'textDocument/foldingRange - (12)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 15:31:27.267 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:27 go/packages.Load\n\tpackages = 1"}
[Trace - 15:31:27.267 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:27 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 15:31:27.268 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":12},"contentChanges":[{"range":{"start":{"line":9,"character":18},"end":{"line":10,"character":60}},"rangeLength":61,"text":""},{"range":{"start":{"line":9,"character":0},"end":{"line":9,"character":0}},"rangeLength":0,"text":"\t\"github.com/hortbot/hortbot/internal/cli/flags/jaegerflags\"\n"}]}
[Trace - 15:31:27.268 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:27 no dep handle: no metadata for gitopencensus.io/trace\n\tpackage = gitopencensus.io/trace"}
[Trace - 15:31:27.271 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:27 error checking common errors: couldn't exec 'go [env GOMOD]': context canceled *errors.errorString\n\tfile = 0x771130"}
[Trace - 15:31:27.271 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:27 no package for file: no package for github.com/hortbot/hortbot/internal/cli/subcommands/bot"}
[Trace - 15:31:27.272 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[{"range":{"start":{"line":0,"character":0},"end":{"line":0,"character":0}},"severity":1,"source":"LSP","message":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go is not part of a package"}]}
[Trace - 15:31:27.299 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":13},"contentChanges":[{"range":{"start":{"line":10,"character":18},"end":{"line":11,"character":57}},"rangeLength":58,"text":""},{"range":{"start":{"line":10,"character":0},"end":{"line":10,"character":0}},"rangeLength":0,"text":"\t\"github.com/hortbot/hortbot/internal/cli/flags/nsqflags\"\n"}]}
[Trace - 15:31:27.303 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:27 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:27.343 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":14},"contentChanges":[{"range":{"start":{"line":11,"character":18},"end":{"line":12,"character":59}},"rangeLength":60,"text":""},{"range":{"start":{"line":11,"character":0},"end":{"line":11,"character":0}},"rangeLength":0,"text":"\t\"github.com/hortbot/hortbot/internal/cli/flags/redisflags\"\n"}]}
[Trace - 15:31:27.345 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:27 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:27.377 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":15},"contentChanges":[{"range":{"start":{"line":12,"character":18},"end":{"line":13,"character":57}},"rangeLength":58,"text":""},{"range":{"start":{"line":12,"character":0},"end":{"line":12,"character":0}},"rangeLength":0,"text":"\t\"github.com/hortbot/hortbot/internal/cli/flags/sqlflags\"\n"}]}
[Trace - 15:31:27.382 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:27 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:27.421 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":16},"contentChanges":[{"range":{"start":{"line":13,"character":18},"end":{"line":14,"character":60}},"rangeLength":61,"text":""},{"range":{"start":{"line":13,"character":0},"end":{"line":13,"character":0}},"rangeLength":0,"text":"\t\"github.com/hortbot/hortbot/internal/cli/flags/twitchflags\"\n"}]}
[Trace - 15:31:27.425 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:27 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:27.462 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":17},"contentChanges":[{"range":{"start":{"line":14,"character":18},"end":{"line":15,"character":49}},"rangeLength":50,"text":""},{"range":{"start":{"line":14,"character":0},"end":{"line":14,"character":0}},"rangeLength":0,"text":"\t\"github.com/hortbot/hortbot/internal/pkg/ctxlog\"\n"}]}
[Trace - 15:31:27.464 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:27 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:27.504 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":18},"contentChanges":[{"range":{"start":{"line":15,"character":18},"end":{"line":16,"character":52}},"rangeLength":53,"text":""},{"range":{"start":{"line":15,"character":0},"end":{"line":15,"character":0}},"rangeLength":0,"text":"\t\"github.com/hortbot/hortbot/internal/pkg/errgroupx\"\n"}]}
[Trace - 15:31:27.513 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:27 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:27.556 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":19},"contentChanges":[{"range":{"start":{"line":16,"character":18},"end":{"line":17,"character":25}},"rangeLength":26,"text":""},{"range":{"start":{"line":16,"character":0},"end":{"line":16,"character":0}},"rangeLength":0,"text":"\t\"go.opencensus.io/trace\"\n"}]}
[Trace - 15:31:27.560 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:27 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:27.651 PM] Sending request 'textDocument/documentLink - (13)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 15:31:27.652 PM] Received response 'textDocument/documentLink - (13)' in 0ms.
Result: [{"range":{"start":{"line":3,"character":1},"end":{"line":3,"character":10}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":1},"end":{"line":4,"character":7}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":1},"end":{"line":6,"character":43}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":1},"end":{"line":7,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":1},"end":{"line":8,"character":57}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":1},"end":{"line":9,"character":60}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":1},"end":{"line":10,"character":18}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":11,"character":1},"end":{"line":11,"character":57}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":12,"character":1},"end":{"line":12,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":13,"character":1},"end":{"line":13,"character":57}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":14,"character":1},"end":{"line":14,"character":60}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":15,"character":1},"end":{"line":15,"character":49}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":16,"character":1},"end":{"line":16,"character":52}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":17,"character":1},"end":{"line":17,"character":25}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":18,"character":1},"end":{"line":18,"character":30}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 15:31:27.754 PM] Sending request 'textDocument/foldingRange - (14)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 15:31:27.755 PM] Received response 'textDocument/foldingRange - (14)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 15:31:27.808 PM] Sending request 'textDocument/codeAction - (15)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[{"range":{"start":{"line":17,"character":1},"end":{"line":17,"character":18}},"message":"zap redeclared in this block","severity":1,"source":"compiler"}]}}
[Trace - 15:31:28.186 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:28 go/packages.Load\n\tpackages = 1"}
[Trace - 15:31:28.187 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:28 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 15:31:28.187 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:28 no dep handle: no metadata for gitopencensus.io/trace\n\tpackage = gitopencensus.io/trace"}
[Trace - 15:31:28.193 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[]}
[Trace - 15:31:28.193 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:28 failed to run analyses: no CheckPackageHandle for gitopencensus.io/trace:true\n\tfile = file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}
[Trace - 15:31:28.265 PM] Sending request 'textDocument/codeAction - (16)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":0,"character":0},"end":{"line":89,"character":0}},"context":{"diagnostics":[]}}
[Trace - 15:31:28.396 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:28 go/packages.Load\n\tpackages = 1"}
[Trace - 15:31:28.396 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:28 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Error - 15:31:28.396 PM] Received #15 no CheckPackageHandles for file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go
[Trace - 15:31:28.449 PM] Sending request 'textDocument/codeAction - (17)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[]}}
[Trace - 15:31:28.843 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:28 go/packages.Load\n\tpackages = 1"}
[Trace - 15:31:28.844 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:28 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 15:31:28.846 PM] Received response 'textDocument/codeAction - (16)' in 581ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":12,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":10,"character":3},"end":{"line":11,"character":3}},"newText":""},{"range":{"start":{"line":17,"character":24},"end":{"line":17,"character":24}},"newText":"\"\n\t\"go.uber.org/zap"}]}]}}]
[Trace - 15:31:28.854 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":20},"contentChanges":[{"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"rangeLength":0,"text":"\"\n\t\"go.uber.org/zap"},{"range":{"start":{"line":10,"character":3},"end":{"line":11,"character":3}},"rangeLength":58,"text":""}]}
[Trace - 15:31:28.854 PM] Sending notification '$/cancelRequest'.
Params: {"id":17}
[Trace - 15:31:28.855 PM] Sending request 'textDocument/formatting - (18)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"options":{"tabSize":4,"insertSpaces":false}}
[Error - 15:31:28.857 PM] Received #17 go [list -f {{context.GOARCH}} {{context.Compiler}} -- unsafe]: signal: killed:
[Trace - 15:31:28.857 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:28 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:28.858 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:28 : context canceled"}
[Trace - 15:31:29.052 PM] Sending request 'textDocument/foldingRange - (19)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 15:31:29.115 PM] Sending request 'textDocument/codeAction - (20)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":17},"end":{"line":17,"character":17}},"context":{"diagnostics":[]}}
[Trace - 15:31:29.610 PM] Sending notification '$/cancelRequest'.
Params: {"id":18}
[Error - 15:31:29.616 PM] Received #18 go [list -e -json -compiled=true -test=true -export=false -deps=true -find=false -- /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot]: signal: killed:
[Trace - 15:31:29.616 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:29 : context canceled"}
[Trace - 15:31:29.616 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:29 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:29.616 PM] Received response 'textDocument/foldingRange - (19)' in 564ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":85,"endCharacter":1,"kind":"imports"}]
[Trace - 15:31:29.633 PM] Sending notification 'textDocument/didSave'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":20}}
[Trace - 15:31:29.686 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:29 go/packages.Load\n\tpackages = 1"}
[Trace - 15:31:29.687 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:29 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 15:31:29.689 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:29 no dep handle: no metadata for gitopencensus.io/trace\n\tpackage = gitopencensus.io/trace"}
[Trace - 15:31:29.702 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[{"range":{"start":{"line":16,"character":18},"end":{"line":16,"character":18}},"severity":1,"source":"syntax","message":"expected ';', found \""}]}
[Trace - 15:31:29.855 PM] Sending request 'textDocument/documentLink - (21)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 15:31:29.959 PM] Sending request 'textDocument/codeAction - (22)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":17},"end":{"line":17,"character":17}},"context":{"diagnostics":[]}}
[Trace - 15:31:29.959 PM] Sending notification '$/cancelRequest'.
Params: {"id":20}
[Trace - 15:31:29.961 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:29 go/packages.Load\n\tpackages = 1"}
[Trace - 15:31:29.961 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:29 go/packages.Load\n\tpackage = /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Error - 15:31:29.962 PM] Received #20 no package for command-line-arguments
[Trace - 15:31:29.962 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:29 : context canceled"}
[Trace - 15:31:29.962 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:29 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 15:31:29.962 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:29 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 15:31:29.962 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:29 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 15:31:29.962 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:29 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 15:31:29.962 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:29 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 15:31:29.962 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:29 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 15:31:29.962 PM] Received response 'textDocument/documentLink - (21)' in 106ms.
Result: [{"range":{"start":{"line":3,"character":1},"end":{"line":3,"character":10}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":1},"end":{"line":4,"character":7}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":1},"end":{"line":6,"character":43}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":1},"end":{"line":7,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":1},"end":{"line":8,"character":57}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":1},"end":{"line":9,"character":60}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":1},"end":{"line":10,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":11,"character":1},"end":{"line":11,"character":57}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":12,"character":1},"end":{"line":12,"character":60}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":13,"character":1},"end":{"line":13,"character":49}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":14,"character":1},"end":{"line":14,"character":52}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":15,"character":1},"end":{"line":15,"character":25}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":16,"character":1},"end":{"line":16,"character":18}},"target":"https://godoc.org/go.uber.org/zap"}]
[Trace - 15:31:29.962 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:29 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 15:31:29.962 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:29 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 15:31:29.962 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:29 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 15:31:29.962 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:29 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 15:31:29.962 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/13 15:31:29 cannot unquote import path: invalid syntax\n\tPath = "}
[Error - 15:31:30.321 PM] Received #22 no packages found for query
[Trace - 15:31:30.321 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:30 go/packages.Load\n\tpackages = 0"}
[Trace - 15:31:31.219 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":21},"contentChanges":[{"range":{"start":{"line":16,"character":18},"end":{"line":17,"character":17}},"rangeLength":19,"text":""},{"range":{"start":{"line":10,"character":3},"end":{"line":10,"character":3}},"rangeLength":0,"text":"ithub.com/hortbot/hortbot/internal/cli/flags/nsqflags\"\n\t\"g"}]}
[Trace - 15:31:31.414 PM] Sending request 'textDocument/foldingRange - (23)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 15:31:31.415 PM] Received response 'textDocument/foldingRange - (23)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 15:31:31.474 PM] Sending request 'textDocument/codeAction - (24)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[]}}
[Trace - 15:31:32.215 PM] Sending request 'textDocument/documentLink - (25)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 15:31:32.796 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:32 go/packages.Load\n\tpackages = 1"}
[Trace - 15:31:32.796 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:32 go/packages.Load\n\tpackage = command-line-arguments\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 15:31:32.799 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[]}
[Trace - 15:31:32.901 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:32 go/packages.Load\n\tpackages = 1"}
[Trace - 15:31:32.901 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/13 15:31:32 go/packages.Load\n\tpackage = command-line-arguments\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 15:31:32.903 PM] Received response 'textDocument/codeAction - (24)' in 1429ms.
Result: {}
[Trace - 15:31:32.903 PM] Received response 'textDocument/documentLink - (25)' in 688ms.
Result: [{"range":{"start":{"line":3,"character":1},"end":{"line":3,"character":10}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":1},"end":{"line":4,"character":7}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":1},"end":{"line":6,"character":43}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":1},"end":{"line":7,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":1},"end":{"line":8,"character":57}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":1},"end":{"line":9,"character":60}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":1},"end":{"line":10,"character":57}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":11,"character":1},"end":{"line":11,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":1},"end":{"line":12,"character":57}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":1},"end":{"line":13,"character":60}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":1},"end":{"line":14,"character":49}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":1},"end":{"line":15,"character":52}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":1},"end":{"line":16,"character":25}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":17,"character":1},"end":{"line":17,"character":18}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":18,"character":1},"end":{"line":18,"character":30}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 15:31:33.055 PM] Sending request 'textDocument/codeAction - (26)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[]}}
[Trace - 15:31:33.068 PM] Received response 'textDocument/codeAction - (26)' in 12ms.
Result: {}
[Trace - 15:31:33.570 PM] Sending request 'textDocument/codeAction - (27)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":0,"character":0},"end":{"line":89,"character":0}},"context":{"diagnostics":[]}}
[Trace - 15:31:33.573 PM] Received response 'textDocument/codeAction - (27)' in 2ms.
Result: {}
[Trace - 15:31:33.574 PM] Sending request 'textDocument/formatting - (28)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"options":{"tabSize":4,"insertSpaces":false}}
[Trace - 15:31:33.576 PM] Received response 'textDocument/formatting - (28)' in 1ms.
Result: []
[Trace - 15:31:33.612 PM] Sending notification 'textDocument/didSave'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":21}}
[Trace - 15:31:35.926 PM] Sending request 'shutdown - (29)'.
Params: {}
[Trace - 15:31:35.927 PM] Received response 'shutdown - (29)' in 0ms.
Result: {}
[Trace - 15:31:35.953 PM] Sending notification 'exit'.
Params: null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment