Skip to content

Commit

Permalink
Merge pull request #32797 from phillip-kruger/dev-ui-arc-cleanup
Browse files Browse the repository at this point in the history
Dev UI remove console.log
  • Loading branch information
mkouba authored Apr 21, 2023
2 parents 22d8b24 + 3f08083 commit e753596
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,21 +103,19 @@ export class QwcArcFiredEvents extends LitElement {
}

_refresh(){
console.log("refresh");
this.jsonRpc.getLastEvents().then(events => {
this._firedEvents = events.result;
});
}

_clear(){
console.log("clear");
this.jsonRpc.clearLastEvents().then(events => {
this._firedEvents = events.result;
});
}

_toggleContext(){
console.log("context");
// TODO:
}

_addToEvents(event){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,21 +64,19 @@ export class QwcArcInvocationTrees extends LitElement {
}

_refresh(){
console.log("refresh");
this.jsonRpc.getLastInvocations().then(invocations => {
this._invocations = invocations.result;
});
}

_clear(){
console.log("clear");
this.jsonRpc.clearLastInvocations().then(invocations => {
this._invocations = invocations.result;
});
}

_toggleFilter(){
console.log("filter");
// TODO:
}
}
customElements.define('qwc-arc-invocation-trees', QwcArcInvocationTrees);

0 comments on commit e753596

Please sign in to comment.