From af59c0c002148eab4290e677a337cdada5b184c4 Mon Sep 17 00:00:00 2001 From: Guy Van Sanden Date: Thu, 16 Apr 2026 14:42:29 +0200 Subject: [PATCH] Add file logging and try addStyle --- lib/AppInfo/Application.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php index 7258bac..9cc2ad9 100644 --- a/lib/AppInfo/Application.php +++ b/lib/AppInfo/Application.php @@ -43,11 +43,14 @@ class Application extends App implements IBootstrap { } } else { // Debug - $css = 'body { border: 30px solid green !important; }'; + $css = 'body { border: 40px solid orange !important; }'; } if ($css) { - Util::addInlineStyle('minimalprofile', $css); + Util::addStyle('minimalprofile', $css); } + + // Also log to file as backup + file_put_contents('/tmp/minimalprofile_debug.log', date('Y-m-d H:i:s') . ' boot called, hidden: ' . print_r($hidden, true) . "\n", FILE_APPEND); } } \ No newline at end of file