Change log level to debug

This commit is contained in:
Jose Olarte III
2025-08-18 15:23:36 +08:00
parent 6d0f4d910f
commit 909d6ff561

View File

@@ -31,7 +31,7 @@ export class ClipboardService {
const platform = Capacitor.getPlatform();
const isNative = Capacitor.isNativePlatform();
logger.log("[ClipboardService] Copying to clipboard:", {
logger.debug("[ClipboardService] Copying to clipboard:", {
text: text.substring(0, 50) + (text.length > 50 ? "..." : ""),
platform,
isNative,
@@ -47,7 +47,7 @@ export class ClipboardService {
await this.copyWeb(text);
}
logger.log("[ClipboardService] Copy successful", {
logger.debug("[ClipboardService] Copy successful", {
platform,
timestamp: new Date().toISOString(),
});