Skip to content

Instantly share code, notes, and snippets.

View ttlcsolutions-sketch's full-sized avatar

TTL Corporate Solutions ttlcsolutions-sketch

View GitHub Profile
@ttlcsolutions-sketch
ttlcsolutions-sketch / obsidian-debug-mobile.js
Created March 20, 2026 23:02 — forked from liamcain/obsidian-debug-mobile.js
Save console messages to logfile for mobile debugging
declare module "obsidian" {
interface App {
isMobile: boolean;
}
}
// Call this method inside your plugin's `onLoad` function
function monkeyPatchConsole(plugin: Plugin) {
if (!plugin.app.isMobile) {
return;