private async Task InitializeDatabaseAsync()
        {
            try
            {
                await _storageAdapter.InitializeStorageAsync().ConfigureAwait(false);

                await _storageAdapter.CreateTableAsync <LogEntry>().ConfigureAwait(false);
            }
            catch (Exception e)
            {
                AppCenterLog.Error(AppCenterLog.LogTag, "An error occurred while initializing storage", e);
            }
        }