Skip to content

Commit 3b22260

Browse files
committed
fix(trace): print tagName without the native prefix
1 parent c035c8c commit 3b22260

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform/nativescript/runtime/node-ops.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { trace } from '../util'
44
export const namespaceMap = {}
55

66
export function createElement(tagName, vnode) {
7-
trace(`CreateElement(${tagName})`)
7+
trace(`CreateElement(${tagName.replace(/^native/i, '')})`)
88
return document.createElement(tagName)
99
}
1010

0 commit comments

Comments
 (0)