problems: remove debug logging

This commit is contained in:
Alexander Zobnin
2019-02-13 19:54:36 +03:00
parent 52029e03fa
commit 98ff776f3a
2 changed files with 0 additions and 2 deletions

View File

@@ -35,7 +35,6 @@ export default class AlertCard extends PureComponent<AlertCardProps, AlertCardSt
ackProblem = (data: AckProblemData) => {
const problem = this.props.problem;
console.log('acknowledge: ', problem.lastEvent && problem.lastEvent.eventid, data);
return this.props.onProblemAck(problem, data).then(result => {
this.closeAckDialog();
}).catch(err => {

View File

@@ -57,7 +57,6 @@ export default class ProblemDetails extends PureComponent<ProblemDetailsProps, P
ackProblem = (data: AckProblemData) => {
const problem = this.props.original as ZBXTrigger;
console.log('acknowledge: ', problem.lastEvent && problem.lastEvent.eventid, data);
return this.props.onProblemAck(problem, data).then(result => {
this.closeAckDialog();
}).catch(err => {