Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python does not respect Workspace path / environment variable shortcuts. #7684

Closed
JeffHanna opened this issue Sep 30, 2019 · 8 comments
Closed
Labels
bug Issue identified by VS Code Team member as probable bug regression Bug didn't exist in a previous release verified Verification succeeded
Milestone

Comments

@JeffHanna
Copy link

The Python extension for VS Code does not respect VS Code's path variables for setting the Python interpreter path.

Environment data

  • VS Code version: 1.38.1 (user setup)
  • Extension version (available under the Extensions sidebar): 2019.9.34911 (3 September 2019)
  • OS and version: Windows 10.0.1763.107
  • Python version (& distribution if applicable, e.g. Anaconda): 3.5.2 64-bit
  • Type of virtual environment used (N/A | venv | virtualenv | conda | ...): N/A
  • Relevant/affected Python packages and their versions: N/A
  • Jedi or Language Server? (i.e. what is "python.jediEnabled" set to; more info How to update the language server to the latest stable version #3977): Language Server

Expected behaviour

Setting a custom Python interpreter path in a VS Code workspace file with "python.pythonPath" should respect VS Code path shortcuts so, e.g. this should work:
"python.pythonPath": "${env:PROGRAMFILES}/blender foundation/blender/2.80/python/bin/python.exe",

Actual behaviour

The environment variable shortcut is not recognized so the custom Python interpreter is not recognized. to get it to work the environment variable shortcut must be expanded out absolutely:

"python.pythonPath": "c:/program files/blender foundation/blender/2.80/python/bin/python.exe",

Steps to reproduce:

  1. Modify a workspace file to point to python interpreter on a path that can be partially realized using an environment variable.

Logs

Output for Python in the Output panel (ViewOutput, change the drop-down the upper-right of the Output panel to Python)

User belongs to experiment group 'ShowPlayIcon - start'
User belongs to experiment group 'DebugAdapterFactory - experiment'
User belongs to experiment group 'PtvsdWheels37 - control'
> conda --version
> pyenv root
> python3.7 -c "import sys;print(sys.executable)"
> python3.6 -c "import sys;print(sys.executable)"
> python3 -c "import sys;print(sys.executable)"
> python2 -c "import sys;print(sys.executable)"
> python -c "import sys;print(sys.executable)"
> py -3.7 -c "import sys;print(sys.executable)"
> py -3.6 -c "import sys;print(sys.executable)"
> py -3 -c "import sys;print(sys.executable)"
> py -2 -c "import sys;print(sys.executable)"
> /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
> conda info --json
Starting Microsoft Python language server.
> /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
> /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
> /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
> /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
Starting Jedi Python language engine.
> /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
> /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
Diagnostic Code: InvalidPythonInterpreterDiagnostic, Message: No Python interpreter is selected. You need to select a Python interpreter to enable features such as IntelliSense, linting, and debugging.
> /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.prefix)"
cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
> /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.prefix)"
cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
> /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
> /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
> /blender foundation/blender/2.80/python/bin/python.exe -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"
cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
> /blender foundation/blender/2.80/python/bin/python.exe -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"
cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
> /blender foundation/blender/2.80/python/bin/python.exe -m site --user-site
cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
> /blender foundation/blender/2.80/python/bin/python.exe -m site --user-site
cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
> /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
> /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
> d:\projects\ctg\main\/ctg/src/tools/Python/scripts/pylint --msg-template='{line},{column},{category},{symbol}:{msg}' --reports=n --output-format=text d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py
cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
##########Linting Output - pylint##########
************* Module vidobj_transform_unifier.vehicle_vidobj_transform_unifier
11,0,error,import-error:Unable to import 'bpy'
12,0,error,import-error:Unable to import 'bpy.app.handlers'
85,32,error,undefined-variable:Undefined variable 'k'
63,24,warning,unused-argument:Unused argument 'key'
206,-1,warning,pointless-string-statement:String statement has no effect
256,2,warning,unused-variable:Unused variable 'scene'

------------------------------------------------------------------

Your code has been rated at 6.33/10 (previous run: 7.78/10, -1.45)

Output from Console under the Developer Tools panel (toggle Developer Tools on under Help; turn on source maps to make any tracebacks be useful by running Enable source map support for extension debugging)

[Extension Host] debugger listening on port 53486
console.ts:137 [Extension Host] [vscode-icons] v9.4.0 activated!
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Display locator refreshing progress, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Notify locators are locating, Class name = p, completed in 2ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detected refreshing of Interpreters, Class name = p, completed in 5ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Create file systemwatcher with pattern *\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Create file systemwatcher with pattern *\*\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 47ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 23ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 21ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 20ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 16ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Register Interpreter Watcher, Class name = p, completed in 14ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 15ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 12ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 6ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Build the workspace interpreter watcher, Class name = h, completed in 28ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py>, Return Value: <Return value cannot be serialized for logging>
console.ts:137 [Extension Host] Error Python Extension: 2019-09-30 09:05:50: [TypeError: Cannot convert object to primitive value	at Array.toString (native)	at module.exports.Object.getOwnPropertyNames.forEach.t (c:\Users\jeff.hanna\.vscode\extensions\ms-python.python-2019.9.34911\out\client\extension.js:1:13058)	at Array.forEach (<anonymous>)	at Object.l [as sendTelemetryEvent] (c:\Users\jeff.hanna\.vscode\extensions\ms-python.python-2019.9.34911\out\client\extension.js:1:12980)	at Object.sendSettingsTelemetry (c:\Users\jeff.hanna\.vscode\extensions\ms-python.python-2019.9.34911\out\client\extension.js:75:486059)	at Timeout.module.exports.r.value.s.timer.setTimeout [as _onTimeout] (c:\Users\jeff.hanna\.vscode\extensions\ms-python.python-2019.9.34911\out\client\extension.js:1:73751)	at ontimeout (timers.js:425:11)	at tryOnTimeout (timers.js:289:5)	at listOnTimeout (timers.js:252:5)	at Timer.processTimers (timers.js:212:10)]
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Rule = settings, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Executing next rule from settings
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: > conda --version
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, , Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: > pyenv root
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: > python3.7 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detection of Python Interpreter for Command python3.7 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: > python3.6 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detection of Python Interpreter for Command python3.6 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: > python3 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detection of Python Interpreter for Command python3 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: > python2 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detection of Python Interpreter for Command python2 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: > python -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: > py -3.7 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detection of Python Interpreter for Command py and args -3.7 failed
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: > py -3.6 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detection of Python Interpreter for Command py and args -3.6 failed
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: > py -3 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detection of Python Interpreter for Command py and args -3 failed
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: > py -2 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detection of Python Interpreter for Command py and args -2 failed
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: > /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detection of Python Interpreter for Command /blender foundation/blender/2.80/python/bin/python.exe and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters, Class name = g, completed in 248ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: > conda info --json
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by CondaEnvFileService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by CondaEnvFileService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by CondaEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by CondaEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by VirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by VirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 311ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by KnownPathsService are of count 1
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by KnownPathsService are [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 325ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Selected Interpreter from workspaceEnvs, Nothing Selected
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Current value for rule system is {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.5.2 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Current value for rule currentPath is {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Current value for rule windowsRegistry is {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: setGlobalInterpreter, Class name = f, completed in 28ms, Arg 1: {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown"}, Arg 2: <argument cannot be serialized for logging>, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Executing next rule from cachedInterpreters
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Selected Interpreter from currentPath, {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: setGlobalInterpreter, Class name = f, completed in 49ms, Arg 1: {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown","cachedEntry":true}, Arg 2: <argument cannot be serialized for logging>, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Executing next rule from currentPath
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Selected Interpreter from windowsRegistry, {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: setGlobalInterpreter, Class name = f, completed in 4ms, Arg 1: {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: <argument cannot be serialized for logging>, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown","cachedEntry":true}]
5console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 3ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters, Class name = g, completed in 4ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Selected Interpreter from system, {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.5.2 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: setGlobalInterpreter, Class name = f, completed in 6ms, Arg 1: {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.5.2 64-bit"}, Arg 2: <argument cannot be serialized for logging>, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: autoSelectInterpreter, Class name = f, completed in 19ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: autoSelectInterpreter, Class name = f, completed in 26ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: autoSelectInterpreter, Class name = f, completed in 79ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: autoSelectInterpreter, Class name = f, completed in 111ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: autoSelectInterpreter, Class name = f, completed in 438ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: autoSelectInterpreter, Class name = f, completed in 440ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Cached data exists getEnvironmentVariables, d:\projects\ctg\main\ctg\src\tools\dcc\Blender
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Rule = settings, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Executing next rule from settings
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Build the workspace interpreter watcher, Class name = h, completed in 2ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py>, Return Value: <Return value cannot be serialized for logging>
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: autoSelectInterpreter, Class name = f, completed in 6ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Selected Interpreter from currentPath, {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Selected Interpreter from windowsRegistry, {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
2console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown","cachedEntry":true}]
3console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters, Class name = g, completed in 3ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Current value for rule system is {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.5.2 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Current value for rule currentPath is {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Current value for rule windowsRegistry is {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
2console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: > /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by CurrentPathService are of count 1
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by CurrentPathService are [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Selected Interpreter from system, {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.5.2 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get language server folder name, Class name = f, completed in 21ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py>, Return Value: "languageServer.0.4.24"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: setGlobalInterpreter, Class name = f, completed in 25ms, Arg 1: {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: setGlobalInterpreter, Class name = f, completed in 24ms, Arg 1: {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: setGlobalInterpreter, Class name = f, completed in 19ms, Arg 1: {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 35ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Executing next rule from currentPath
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Executing next rule from cachedInterpreters
3console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: autoSelectInterpreter, Class name = f, completed in 38ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: setGlobalInterpreter, Class name = f, completed in 16ms, Arg 1: {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.5.2 64-bit"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: autoSelectInterpreter, Class name = f, completed in 42ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get language server folder name, Class name = f, completed in 11ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py>, Return Value: "languageServer.0.4.24"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Cached data exists getEnvironmentVariables, d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py
2console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: > /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Error Python Extension: 2019-09-30 09:05:50: Failed to get analysis options, Class name = y, completed in 5ms, , Return Value: undefined [Error: did not find an active interpreter	at y.getAnalysisOptions (c:\Users\jeff.hanna\.vscode\extensions\ms-python.python-2019.9.34911\out\client\extension.js:75:31595)	at process._tickCallback (internal/process/next_tick.js:68:7)]
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2019-09-30 09:05:50: Starting Language Server, Class name = d, completed in 5ms, , Return Value: undefined { [Error: did not find an active interpreter	at y.getAnalysisOptions (c:\Users\jeff.hanna\.vscode\extensions\ms-python.python-2019.9.34911\out\client\extension.js:75:31595)	at process._tickCallback (internal/process/next_tick.js:68:7)] vslsStack: [ CallSite {}, CallSite {} ] }
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2019-09-30 09:05:50: Failed to start Language Server, Class name = d, completed in 18ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py>, Return Value: undefined { [Error: did not find an active interpreter	at y.getAnalysisOptions (c:\Users\jeff.hanna\.vscode\extensions\ms-python.python-2019.9.34911\out\client\extension.js:75:31595)	at process._tickCallback (internal/process/next_tick.js:68:7)] vslsStack: [ CallSite {}, CallSite {} ] }
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2019-09-30 09:05:50: Failed to activate language server, Class name = p, completed in 43ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py>, Return Value: undefined { [Error: did not find an active interpreter	at y.getAnalysisOptions (c:\Users\jeff.hanna\.vscode\extensions\ms-python.python-2019.9.34911\out\client\extension.js:75:31595)	at process._tickCallback (internal/process/next_tick.js:68:7)] vslsStack: [ CallSite {}, CallSite {} ] }
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Cached data exists getEnvironmentVariables, d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by WindowsRegistryService are of count 1
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Interpreters returned by WindowsRegistryService are [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Get Interpreters in CacheableLocatorService, Class name = g, completed in 63ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Hide locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: All locators have completed locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Selected Interpreter from workspaceEnvs, Nothing Selected
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: autoSelectInterpreter, Class name = f, completed in 66ms, Arg 1: <Uri:d:\projects\ctg\main\ctg\src\tools\dcc\Blender>, Return Value: undefined
2console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:50: > /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Error Python Extension: 2019-09-30 09:05:50: Diagnostic Code: InvalidPythonInterpreterDiagnostic, Message: No Python interpreter is selected. You need to select a Python interpreter to enable features such as IntelliSense, linting, and debugging.
t.log @ console.ts:137
notificationsAlerts.ts:40 No Python interpreter is selected. You need to select a Python interpreter to enable features such as IntelliSense, linting, and debugging.
onDidNotificationChange @ notificationsAlerts.ts:40
5console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: Cached data exists getEnvironmentVariables, d:\projects\ctg\main\ctg\src\tools\dcc\Blender
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: > /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.prefix)"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: > /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.prefix)"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: > /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: > /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: > /blender foundation/blender/2.80/python/bin/python.exe -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: > /blender foundation/blender/2.80/python/bin/python.exe -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: > /blender foundation/blender/2.80/python/bin/python.exe -m site --user-site
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: > /blender foundation/blender/2.80/python/bin/python.exe -m site --user-site
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: Cached data exists getEnvironmentVariables, d:\projects\ctg\main\ctg\src\tools\dcc\Blender
2console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: > /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: Cached data exists getEnvironmentVariables, d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: > d:\projects\ctg\main\/ctg/src/tools/Python/scripts/pylint --msg-template='{line},{column},{category},{symbol}:{msg}' --reports=n --output-format=text d:\projects\ctg\main\ctg\src\tools\dcc\Blender\scripts\addons\vidobj_transform_unifier\vehicle_vidobj_transform_unifier.py
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:05:51: cwd: d:\projects\ctg\main\ctg\src\tools\dcc\Blender
console.ts:137 [Extension Host] (node:20776) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Rule = settings, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Executing next rule from settings
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Current value for rule system is {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.5.2 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Current value for rule currentPath is {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Current value for rule windowsRegistry is {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: setGlobalInterpreter, Class name = f, completed in 23ms, Arg 1: {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: <argument cannot be serialized for logging>, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Executing next rule from cachedInterpreters
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Selected Interpreter from currentPath, {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: setGlobalInterpreter, Class name = f, completed in 17ms, Arg 1: {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown"}, Arg 2: <argument cannot be serialized for logging>, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Executing next rule from currentPath
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Selected Interpreter from windowsRegistry, {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: setGlobalInterpreter, Class name = f, completed in 7ms, Arg 1: {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown"}, Arg 2: <argument cannot be serialized for logging>, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Display locator refreshing progress, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Create file systemwatcher with pattern *\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Create file systemwatcher with pattern *\*\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Get Interpreters in CacheableLocatorService, Class name = g, completed in 3ms, Arg 1: <Uri:tasks>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Register Interpreter Watcher, Class name = p, completed in 1ms, Arg 1: <Uri:tasks>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: <Uri:tasks>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Get Interpreters in CacheableLocatorService, Class name = g, completed in 4ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
2console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Get Interpreters in CacheableLocatorService, Class name = g, completed in 4ms, Arg 1: <Uri:tasks>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, Arg 1: <Uri:tasks>, Return Value: []
2console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Build the workspace interpreter watcher, Class name = h, completed in 3ms, Arg 1: <Uri:tasks>, Return Value: <Return value cannot be serialized for logging>
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Get Interpreters, Class name = g, completed in 6ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Selected Interpreter from system, {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.5.2 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: setGlobalInterpreter, Class name = f, completed in 11ms, Arg 1: {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.5.2 64-bit"}, Arg 2: <argument cannot be serialized for logging>, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Hide locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: All locators have completed locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: autoSelectInterpreter, Class name = f, completed in 23ms, Arg 1: <Uri:tasks>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: autoSelectInterpreter, Class name = f, completed in 32ms, Arg 1: <Uri:tasks>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: autoSelectInterpreter, Class name = f, completed in 51ms, Arg 1: <Uri:tasks>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: autoSelectInterpreter, Class name = f, completed in 83ms, Arg 1: <Uri:tasks>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: autoSelectInterpreter, Class name = f, completed in 85ms, Arg 1: <Uri:tasks>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: autoSelectInterpreter, Class name = f, completed in 87ms, Arg 1: <Uri:tasks>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Cached data exists getEnvironmentVariables, tasks
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Rule = settings, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Executing next rule from settings
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Executing next rule from workspaceEnvs
2console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: autoSelectInterpreter, Class name = f, completed in 2ms, Arg 1: <Uri:tasks>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Selected Interpreter from windowsRegistry, {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Selected Interpreter from currentPath, {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
2console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:tasks>, Return Value: []
3console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: <Uri:tasks>, Return Value: []
2console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Get Interpreters, Class name = g, completed in 3ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Selected Interpreter from system, {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.5.2 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Current value for rule system is {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.5.2 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Current value for rule currentPath is {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Current value for rule windowsRegistry is {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown"}
2console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: > /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: setGlobalInterpreter, Class name = f, completed in 17ms, Arg 1: {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: setGlobalInterpreter, Class name = f, completed in 17ms, Arg 1: {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","type":"Unknown"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: setGlobalInterpreter, Class name = f, completed in 14ms, Arg 1: {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.5.2 64-bit"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: setGlobalInterpreter, Class name = f, completed in 12ms, Arg 1: {"architecture":3,"path":"d:\\projects\\ctg\\main\\ctg\\publish\\python\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.5.2-final","major":3,"minor":5,"patch":2,"prerelease":["final"],"build":[],"version":"3.5.2-final"},"sysPrefix":"d:\\projects\\ctg\\main\\ctg\\publish\\python","fileHash":"be745a429322aa7f32b4c50e157125c1b33537ab1348531b0c8bf4c4acac43fa189ca1ef797d29139a318c10cab955a4254d059b08b483f2f7d61156ce0c911f","companyDisplayName":"Python Software Foundation","type":"Unknown"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Executing next rule from currentPath
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: Executing next rule from cachedInterpreters
4console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:06:07: autoSelectInterpreter, Class name = f, completed in 24ms, Arg 1: <Uri:tasks>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:07:44: Cached data exists getEnvironmentVariables, extension-output-#6
2console.ts:137 [Extension Host] Info Python Extension: 2019-09-30 09:07:44: > /blender foundation/blender/2.80/python/bin/python.exe -c "import sys;print(sys.executable)"
@JeffHanna JeffHanna added triage-needed Needs assignment to the proper sub-team bug Issue identified by VS Code Team member as probable bug labels Sep 30, 2019
@DonJayamanne
Copy link

Thanks for reporting this issue.
Please could you confirm the environment variable PROGRAMFILES exists.
Please could you open a terminal (outside VS Code) and print the contents of the env variable PROGRAMFILES (please ensure the case is correct).

@karthiknadig karthiknadig self-assigned this Sep 30, 2019
@ghost ghost removed the triage-needed Needs assignment to the proper sub-team label Sep 30, 2019
@JeffHanna
Copy link
Author

image

@karthiknadig
Copy link
Member

@DonJayamanne Any suggestion on where this issue might be?

@DonJayamanne
Copy link

Nope, we'll need to test this locally.

@karthiknadig
Copy link
Member

This is another regression in the environment variable resolution.

@karthiknadig karthiknadig added needs PR regression Bug didn't exist in a previous release and removed triage labels Oct 28, 2019
@awav
Copy link

awav commented Nov 22, 2019

I have similar issue with ${workspaceFolder}, details are here #6594 (comment)

@DonJayamanne
Copy link

DonJayamanne commented Nov 23, 2019

This is another regression in the environment variable resolution.

Have we managed this replicate this issue?

@karrtikr
Copy link

karrtikr commented Oct 22, 2021

Does not happen for me in the latest release of the extension. Please open a new issue if it still happens.

@karrtikr karrtikr added this to the October 2021 milestone Oct 22, 2021
@karrtikr karrtikr added the verified Verification succeeded label Oct 25, 2021
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Nov 26, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Issue identified by VS Code Team member as probable bug regression Bug didn't exist in a previous release verified Verification succeeded
Projects
None yet
Development

No branches or pull requests

5 participants