mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-05-25 03:42:13 +00:00
add debug print
This commit is contained in:
parent
95c5d6a4f1
commit
50679ce9ed
1 changed files with 3 additions and 1 deletions
|
|
@ -53,7 +53,9 @@ class QrCodeUtils {
|
|||
final bytes = qrEnvelope.writeToBuffer();
|
||||
final urlSafeBase64 = base64Url.encode(bytes);
|
||||
|
||||
return '$linkPrefix$urlSafeBase64';
|
||||
final link = '$linkPrefix$urlSafeBase64';
|
||||
if (kDebugMode) Log.info(link);
|
||||
return link;
|
||||
}
|
||||
|
||||
// returns: profile, NEW_USER=true/VERIFIED_USER=false, VERIFICATION_OK
|
||||
|
|
|
|||
Loading…
Reference in a new issue