Skip to content

Commit

Permalink
Remove some console logging
Browse files Browse the repository at this point in the history
  • Loading branch information
PEZ committed Jun 8, 2019
1 parent 2dc3186 commit 79b1945
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,5 @@ pom.xml
## TS
out/
html/main.js
tsconfig.tsbuildinfo
tsconfig.tsbuildinfo
html/main.js.map
1 change: 0 additions & 1 deletion calva/paredit/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,6 @@ export function activate(context: ExtensionContext) {
commands.registerCommand('paredit.toggle', () => { enabled = !enabled; statusBar.enabled = enabled; }),
window.onDidChangeActiveTextEditor((e) => statusBar.visible = e && e.document && languages.has(e.document.languageId)),
workspace.onDidChangeConfiguration((e: ConfigurationChangeEvent) => {
console.log(e);
if (e.affectsConfiguration('calva.paredit.defaultKeyMap')) {
setKeyMapConf();
}
Expand Down
1 change: 0 additions & 1 deletion calva/refresh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { NReplSession } from './nrepl';


function report(res, chan: vscode.OutputChannel) {
console.log(res);
if (res.status == "ok") {
chan.appendLine("Reloaded: (" + res.reloaded.join(" ") + ")");
chan.appendLine(":ok");
Expand Down

0 comments on commit 79b1945

Please sign in to comment.