show 'progress' message while building index.
This commit is contained in:
@@ -33,6 +33,7 @@ export function activate(options : ActivatorOptions, context: VSCode.ExtensionCo
|
||||
|
||||
var log_output = VSCode.window.createOutputChannel(options.extensionId+"-debug-log");
|
||||
log("Activating '"+options.extensionId+"' extension");
|
||||
window.showInformationMessage("Activating spring-boot extension!");
|
||||
|
||||
function log(msg : string) {
|
||||
if (log_output) {
|
||||
@@ -106,7 +107,6 @@ export function activate(options : ActivatorOptions, context: VSCode.ExtensionCo
|
||||
);
|
||||
let progressService = new ProgressService();
|
||||
client.onNotification({method: "sts/progress"}, (params : ProgressParams) => {
|
||||
log("progress: "+JSON.stringify(params));
|
||||
progressService.handle(params);
|
||||
});
|
||||
let disposable = client.start();
|
||||
|
||||
Reference in New Issue
Block a user