8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbaa4dc commit 12e5154Copy full SHA for 12e5154
platform/nativescript/framework.js
@@ -6,6 +6,7 @@ import NavigatorPlugin from './plugins/navigator-plugin'
6
import { setVue } from './util'
7
8
Vue.config.silent = true
9
+Vue.config.suppressRenderLogs = false
10
11
setVue(Vue)
12
platform/nativescript/util/index.js
@@ -74,9 +74,11 @@ export function trace(message) {
74
return infoTrace()
75
}
76
77
- console.log(
78
- `{NSVue (Vue: ${VUE_VERSION} | NSVue: ${NS_VUE_VERSION})} -> ${message}`
79
- )
+ if (!_Vue.config.suppressRenderLogs) {
+ console.log(
+ `{NSVue (Vue: ${VUE_VERSION} | NSVue: ${NS_VUE_VERSION})} -> ${message}`
80
+ )
81
+ }
82
83
84
export function before(original, thisArg, wrap) {
0 commit comments