From 8b4e4a2d50dee753da1618ccd298ca91a09d4506 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sun, 22 Jan 2023 11:00:04 +0100 Subject: [PATCH] Update DISCLAIMER.md --- doc/DISCLAIMER.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/doc/DISCLAIMER.md b/doc/DISCLAIMER.md index 9cae433..443a08d 100644 --- a/doc/DISCLAIMER.md +++ b/doc/DISCLAIMER.md @@ -1,3 +1,23 @@ ## Configuration Once installed, reaching `http://domain.tld/path` should show a page explaining how to configure it. + +### Solving problems with Android + +The sure-fire way to know what Sync on Android is really doing is to observe the Android device log using adb logcat. You’ll want to bump your log-level: +``` +adb shell setprop log.tag.FxAccounts VERBOSE +``` + +Then, you can observe the log using: +``` +adb logcat | grep FxAccounts +``` + +It’s best to observe the log while you force a sync from the Android Settings App. You should see output like: + +``` +D FxAccounts(...) fennec :: BaseResource :: HTTP GET https://token.stage.mozaws.net/1.0/sync/1.5 +... +D FxAccounts(...) fennec :: BaseResource :: HTTP GET https://sync-4-us-east-1.stage.mozaws.net/ +```