Skip to content

Commit

Permalink
trying to remove "yz.debug.debugTraceStepsV2"
Browse files Browse the repository at this point in the history
yazz committed Jan 28, 2025
1 parent 25db55b commit 50f8129
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions public/go.html
Original file line number Diff line number Diff line change
@@ -13393,7 +13393,7 @@ <h1 style='width:100%;vertical-align:top;display:inline-block;font-size:100px; t
debugFileText: fileText
})
},
sqluiDebug: function ( dbgCode , sql , params ) {
sqluiDebug: function ( dbgCode , dbgThread , sql , params ) {
//----------------------------------------------------------------------------------/
//
// /-------------------------------------/
@@ -13449,7 +13449,7 @@ <h1 style='width:100%;vertical-align:top;display:inline-block;font-size:100px; t
sourceFileName = sourceForCallerOfFunction.fileName
lineNumber = sourceForCallerOfFunction.lineNumber
}
let steps = yz.debug.debugTraceStepsV2
let steps = dbgThread.debugTraceStepsV3
let lastTraceitem = null
let lastTraceid = null
if (steps && (steps.length > 0)) {
@@ -13912,7 +13912,7 @@ <h1 style='width:100%;vertical-align:top;display:inline-block;font-size:100px; t
//

sqlui: function ( sql , params ) {
let ret = yz.debug.sqluiDebug(null, sql , params)
let ret = yz.debug.sqluiDebug(null, null, sql , params)
return ret
},
sqlui1: function ( sql , params ) {
@@ -14459,7 +14459,7 @@ <h1 style='width:100%;vertical-align:top;display:inline-block;font-size:100px; t
for (let thisApp of responseJson) {
let alreadyExists = yz.uiDb.sqlui("select * from ui_table_appstore_apps where content_hash = ?", [thisApp.content_hash])
if (alreadyExists.length == 0) {
yz.debug.sqluiDebug("hgdfsgjhksdfghjkdsfgdfjskhgnfuybgfeiurybrgeruyigferuiyigfueirgueirwygyuieriur",
yz.debug.sqluiDebug("hgdfsgjhksdfghjkdsfgdfjskhgnfuybgfeiurybrgeruyigferuiyigfueirgueirwygyuieriur",dbgThread,
"insert into ui_table_appstore_apps ( id , old_id, content_hash , base_component_id, logo, display_name,component_type) values (?,?,?,?,?,?,?)",
[yz.uiDb.uiDbNextId ++, thisApp.base_component_id, thisApp.content_hash,thisApp.base_component_id,thisApp.logo, thisApp.display_name, thisApp.component_type])
}
@@ -14473,10 +14473,10 @@ <h1 style='width:100%;vertical-align:top;display:inline-block;font-size:100px; t
yz.debug.endOfDebugSection()
},
addInstalledApp: async function ( dbg , app ) {
yz.debug.debugFn("hjdgfjgfksfgdkjhgfdsjhkfgdjhkfdsgjkhfdsgjfds",dbg, arguments)
let dbgThread = yz.debug.debugFn("hjdgfjgfksfgdkjhgfdsjhkfgdjhkfdsgjkhfdsgjfds",dbg, arguments)
let alreadyExists = yz.uiDb.sqlui("select * from ui_table_installed_apps where code_id = ?", [app.code_id])
if (alreadyExists.length == 0) {
yz.debug.sqluiDebug("hdfjkshfjkdshfudisyouidsfyffdsbyoiudfsyboibdsfyioudsfbyoibsefyfdsidfsiobdsfoidfsbiodfsoi",
yz.debug.sqluiDebug("hdfjkshfjkdshfudisyouidsfyffdsbyoiudfsyboibdsfyioudsfbyoibsefyfdsidfsiobdsfoidfsbiodfsoi",dbgThread,
"insert into ui_table_installed_apps ( id , code_id , base_component_id, logo, display_name,component_type) values (?,?,?,?,?,?)",
[yz.uiDb.uiDbNextId ++,app.code_id,app.base_component_id,app.logo_url, app.displayName, app.component_type])
}

0 comments on commit 50f8129

Please sign in to comment.