fix: 去除 console.log

This commit is contained in:
@changcode
2022-03-10 13:50:29 +08:00
parent ff48f86654
commit b2cf271a40
6 changed files with 1 additions and 8 deletions

View File

@@ -161,7 +161,7 @@ export default {
immediate: true,
handler (n) {
if (n) {
console.log(n)
// console.log(n)
}
}
}

View File

@@ -115,7 +115,6 @@ export default {
if (item != '') {
let expr = item
this.matchContent && (expr = `${item} ${this.matchSymbol} "${this.matchContent}"`)
console.log(this.filterTime)
requestArr.push(this.$get('/logs/loki/api/v1/query_range?format=1&query=' + encodeURIComponent(expr) + '&start=' + this.$stringTimeParseToUnix(this.filterTime[0]) + '&end=' + this.$stringTimeParseToUnix(this.filterTime[1]) + '&limit=' + limit))
}
})