Fix iOS contact copy function #154

Merged
jose merged 9 commits from ios-contact-copy into master 2025-08-26 06:35:10 +00:00
Showing only changes of commit 909d6ff561 - Show all commits

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:", {

I vote for this to be a logger.debug call.

I vote for this to be a logger.debug call.

... in multiple places.

... in multiple places.
Outdated
Review

Agreed. Changed level from .log to .debug in two spots in ClipboardService.ts

Agreed. Changed level from `.log` to `.debug` in two spots in ClipboardService.ts
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(),
});