diff --git a/CHANGELOG.md b/CHANGELOG.md index c664c85..16a9ae8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log + All notable changes to the "frog" extension will be documented in this file. +## 0.0.19 + +- Maintenance release + ## 0.0.18 - Fixed bug with endless loop diff --git a/package.json b/package.json index 0a56f5e..12e5b23 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "frog", "displayName": "Frog", "description": "The Oracle SQL workbench for VSCode", - "version": "0.0.18", + "version": "0.0.19", "publisher": "tmuerell", "engines": { "vscode": "^1.17.0" diff --git a/src/sessionmanager.ts b/src/sessionmanager.ts index 986d105..4996ddc 100644 --- a/src/sessionmanager.ts +++ b/src/sessionmanager.ts @@ -117,7 +117,7 @@ export class SessionManager { } this.diagnosticCollection.set(document.uri, diagnostics); - this.outputChannel.append("-- " + new Date() + " -------------------------------\n"); + this.outputChannel.append("-- end@" + this.currentConnection.name + " " + new Date() + " -------------------------------\n"); outputBuffer = ""; this.statusBarItem.text = this.currentConnection.name + " (Connected)"; } catch (e) { @@ -142,7 +142,7 @@ export class SessionManager { public execute(text : string, rowLimit : number) { if (!this.check()) return; - this.outputChannel.append("-- " + new Date() + " -------------------------------\n"); //Executing: '" + text + "'\n"); + this.outputChannel.append("-- begin@" + this.currentConnection.name + " " + new Date() + " -------------------------------\n"); let input = { "sql": text, "rowLimit": rowLimit }; this.dbSession.stdin.write(JSON.stringify(input) + "\n--- END ---\n"); this.statusBarItem.text = this.currentConnection.name + " (Connected, Query running...)";