From 608bc90bd9448fcb7bc508421a75f6ab21908b89 Mon Sep 17 00:00:00 2001 From: Dan Mace Date: Thu, 22 Sep 2016 20:27:42 -0400 Subject: [PATCH] Send test output to a distinct output channel Send Go test output to a dedicated output channel. Re-using the "Go" channel from the status component causes a lot of confusing interspersed unrelated output, and the test command often clears the "Go" channel, obliterating things users might want to see. --- src/goTest.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/goTest.ts b/src/goTest.ts index bb4242b5d..3bdd529aa 100644 --- a/src/goTest.ts +++ b/src/goTest.ts @@ -11,7 +11,8 @@ import vscode = require('vscode'); import util = require('util'); import { getGoRuntimePath } from './goPath'; import { GoDocumentSymbolProvider } from './goOutline'; -import { outputChannel } from './goStatus'; + +let outputChannel = vscode.window.createOutputChannel('Go Tests'); /** * Input to goTest.