We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54d5ea1 commit e3ca54aCopy full SHA for e3ca54a
package.json
@@ -2,7 +2,7 @@
2
"name": "php-namespace-resolver",
3
"displayName": "PHP Namespace Resolver",
4
"description": "Import and expand php namespaces",
5
- "version": "0.5.1",
+ "version": "0.5.2",
6
"publisher": "ctf0",
7
"author": "ctf0",
8
"repository": "https://github.com/ctf0/PHP-Namespace-Resolver",
src/Resolver.ts
@@ -858,9 +858,8 @@ export class Resolver {
858
} catch (error) {
859
// console.error(error);
860
861
- outputChannel.clear();
862
- outputChannel.appendLine(error.message);
863
- outputChannel.show();
+ outputChannel.replace(error.message);
+ // outputChannel.show();
864
}
865
866
0 commit comments