incl: add a debug message to indicate end of init

This commit is contained in:
Andrew R
2024-09-13 15:03:10 +09:30
committed by GitHub
parent 8e7782b6a1
commit 3e851b335b
+2 -1
View File
@@ -54,6 +54,7 @@ async function init() {
if (hasSEQTAText && hasSEQTATitle && !IsSEQTAPage) { if (hasSEQTAText && hasSEQTATitle && !IsSEQTAPage) {
IsSEQTAPage = true IsSEQTAPage = true
console.log('[BetterSEQTA+] Verified SEQTA Page') console.log('[BetterSEQTA+] Verified SEQTA Page')
const documentLoadStyle = document.createElement('style') const documentLoadStyle = document.createElement('style')
documentLoadStyle.textContent = documentLoadCSS documentLoadStyle.textContent = documentLoadCSS
document.head.appendChild(documentLoadStyle) document.head.appendChild(documentLoadStyle)
@@ -77,7 +78,7 @@ async function init() {
document.head.appendChild(injectedStyle) document.head.appendChild(injectedStyle)
} }
} }
console.log('[BetterSEQTA+] Successfully initalised BetterSEQTA+, starting to load assets.')
main() main()
} catch (error: any) { } catch (error: any) {
console.error(error) console.error(error)