Fixes issue with output channel logging

This commit is contained in:
Eric Amodio
2017-03-05 15:41:16 -05:00
parent 0958c152fe
commit f1ec0ec0b2

View File

@@ -28,7 +28,7 @@ function onConfigurationChanged() {
output && output.dispose();
}
else {
output = output && window.createOutputChannel(OutputChannelName);
output = output || window.createOutputChannel(OutputChannelName);
}
}
}