mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-29 18:38:36 +08:00
Print out the settings
It's useful when analyzing the debug log from bug reports.
This commit is contained in:
@ -26,6 +26,15 @@ class JournalApp extends StatelessWidget {
|
||||
var remoteGitRepoSubFolder = pref.getString("remoteGitRepoSubFolder") ?? "";
|
||||
var onBoardingCompleted = pref.getBool("onBoardingCompleted") ?? false;
|
||||
|
||||
print(" ---- Settings ---- ");
|
||||
print("localGitRepoConfigured: $localGitRepoConfigured");
|
||||
print("remoteGitRepoConfigured: $remoteGitRepoConfigured");
|
||||
print("localGitRepoPath: $localGitRepoPath");
|
||||
print("remoteGitRepoFolderName: $remoteGitRepoFolderName");
|
||||
print("remoteGitRepoSubFolder: $remoteGitRepoSubFolder");
|
||||
print("onBoardingCompleted: $onBoardingCompleted");
|
||||
print(" ------------------ ");
|
||||
|
||||
//
|
||||
// Check if in debugMode or not a real device
|
||||
//
|
||||
|
Reference in New Issue
Block a user