refactor: save current workspace state including FinlyticAnalyzer fixes, FinlyticApp trade route alignment, and DTO audit documentation
This commit is contained in:
+9
-2
@@ -28,5 +28,12 @@ appsettings.Development.json
|
|||||||
## User-specific files
|
## User-specific files
|
||||||
*.user
|
*.user
|
||||||
*.suo
|
*.suo
|
||||||
*.userosscache
|
## Flutter & Dart
|
||||||
*.sln.docstates
|
**/.dart_tool/
|
||||||
|
**/build/
|
||||||
|
*.log
|
||||||
|
|
||||||
|
## Temporary data & scratch
|
||||||
|
Yahoo finance data/
|
||||||
|
*.tmp
|
||||||
|
FinlyticApp/lib/tickers_grep.json
|
||||||
|
|||||||
@@ -105,10 +105,10 @@ public class ManualAnalysisController : ControllerBase
|
|||||||
},
|
},
|
||||||
TradeFeedback = new TradeFeedbackInfo
|
TradeFeedback = new TradeFeedbackInfo
|
||||||
{
|
{
|
||||||
TotalAssetTrades = 12,
|
TotalAssetTrades = 0,
|
||||||
AssetWinRate = winRate,
|
AssetWinRate = winRate,
|
||||||
AvgReturnPercent = 3.4,
|
AvgReturnPercent = 0.0,
|
||||||
LastTradeResult = "WIN"
|
LastTradeResult = "UNKNOWN"
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -120,6 +120,7 @@ public class ManualAnalysisController : ControllerBase
|
|||||||
{
|
{
|
||||||
proposal = new TradeProposalDto
|
proposal = new TradeProposalDto
|
||||||
{
|
{
|
||||||
|
TradeId = "PROP-" + Guid.NewGuid().ToString("N"),
|
||||||
AnalysisId = analysisId,
|
AnalysisId = analysisId,
|
||||||
EventId = analysisId,
|
EventId = analysisId,
|
||||||
Sector = request.Sector,
|
Sector = request.Sector,
|
||||||
|
|||||||
@@ -2,11 +2,8 @@ using System;
|
|||||||
using FinlyticAnalyzer.Database;
|
using FinlyticAnalyzer.Database;
|
||||||
using FinlyticAnalyzer.Services;
|
using FinlyticAnalyzer.Services;
|
||||||
using FinlyticAnalyzer.Util;
|
using FinlyticAnalyzer.Util;
|
||||||
|
using FinlyticCore.Services.Yahoo;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using Microsoft.Extensions.Configuration;
|
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
|
||||||
using Microsoft.Extensions.Hosting;
|
|
||||||
using Microsoft.Extensions.Logging;
|
|
||||||
|
|
||||||
var builder = Host.CreateApplicationBuilder(args);
|
var builder = Host.CreateApplicationBuilder(args);
|
||||||
|
|
||||||
@@ -14,16 +11,15 @@ var builder = Host.CreateApplicationBuilder(args);
|
|||||||
builder.Services.AddDbContext<AnalyzerDbContext>(options =>
|
builder.Services.AddDbContext<AnalyzerDbContext>(options =>
|
||||||
options.UseNpgsql(builder.Configuration.GetConnectionString("DefaultConnection")));
|
options.UseNpgsql(builder.Configuration.GetConnectionString("DefaultConnection")));
|
||||||
|
|
||||||
// Register HTTP Clients for external scrapers/webhooks
|
// Register HTTP Clients for external webhooks (HttpClientFactory manages pool)
|
||||||
builder.Services.AddHttpClient<IVixTrackerService, VixTrackerService>();
|
|
||||||
builder.Services.AddHttpClient<IN8nEvaluationService, N8nEvaluationService>();
|
builder.Services.AddHttpClient<IN8nEvaluationService, N8nEvaluationService>();
|
||||||
|
|
||||||
// Register Domain Services
|
// Register Domain Services
|
||||||
builder.Services.AddSingleton<IVixTrackerService, VixTrackerService>();
|
builder.Services.AddSingleton<IVixTrackerService, VixTrackerService>();
|
||||||
builder.Services.AddSingleton<IThreeLayerFilterEngine, ThreeLayerFilterEngine>();
|
builder.Services.AddSingleton<IThreeLayerFilterEngine, ThreeLayerFilterEngine>();
|
||||||
builder.Services.AddSingleton<IWinRateCalculator, WinRateCalculator>();
|
builder.Services.AddSingleton<IWinRateCalculator, WinRateCalculator>();
|
||||||
builder.Services.AddSingleton<IN8nEvaluationService, N8nEvaluationService>();
|
|
||||||
builder.Services.AddScoped<ISettingsDbService, SettingsDbService>();
|
builder.Services.AddScoped<ISettingsDbService, SettingsDbService>();
|
||||||
|
builder.Services.AddScoped<YahooFinanceClient>();
|
||||||
|
|
||||||
// Unified MQTT Client (Handles both Events and RPC)
|
// Unified MQTT Client (Handles both Events and RPC)
|
||||||
builder.Services.AddSingleton<AnalyzerMqttClient>();
|
builder.Services.AddSingleton<AnalyzerMqttClient>();
|
||||||
@@ -60,4 +56,4 @@ using (var scope = host.Services.CreateScope())
|
|||||||
await vixService.PollVixAsync();
|
await vixService.PollVixAsync();
|
||||||
}
|
}
|
||||||
|
|
||||||
await host.RunAsync();
|
await host.RunAsync();
|
||||||
@@ -103,6 +103,7 @@ public class ActiveTradeMonitorWorker : BackgroundService
|
|||||||
|
|
||||||
using var scope = _scopeFactory.CreateScope();
|
using var scope = _scopeFactory.CreateScope();
|
||||||
var n8nService = scope.ServiceProvider.GetRequiredService<IN8nEvaluationService>();
|
var n8nService = scope.ServiceProvider.GetRequiredService<IN8nEvaluationService>();
|
||||||
|
var vixService = scope.ServiceProvider.GetRequiredService<IVixTrackerService>();
|
||||||
|
|
||||||
foreach (var trade in trades)
|
foreach (var trade in trades)
|
||||||
{
|
{
|
||||||
@@ -110,7 +111,7 @@ public class ActiveTradeMonitorWorker : BackgroundService
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
await ProcessTradeAsync(trade, n8nService, cancellationToken);
|
await ProcessTradeAsync(trade, n8nService, vixService, cancellationToken);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
@@ -121,7 +122,7 @@ public class ActiveTradeMonitorWorker : BackgroundService
|
|||||||
}
|
}
|
||||||
|
|
||||||
private async Task ProcessTradeAsync(TradeProposalDto trade, IN8nEvaluationService n8nService,
|
private async Task ProcessTradeAsync(TradeProposalDto trade, IN8nEvaluationService n8nService,
|
||||||
CancellationToken cancellationToken)
|
IVixTrackerService vixService, CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
// 1. Get Live Price
|
// 1. Get Live Price
|
||||||
var livePriceReq = new IsinRequest(trade.Isin);
|
var livePriceReq = new IsinRequest(trade.Isin);
|
||||||
@@ -210,8 +211,8 @@ public class ActiveTradeMonitorWorker : BackgroundService
|
|||||||
},
|
},
|
||||||
MarketContext = new MarketContextInfo
|
MarketContext = new MarketContextInfo
|
||||||
{
|
{
|
||||||
Vix = trade.VixValue,
|
Vix = (double)vixService.CurrentVix,
|
||||||
MarketRegime = trade.VixRegime.ToString()
|
MarketRegime = vixService.CurrentRegime.ToString()
|
||||||
},
|
},
|
||||||
UserPreferences = new UserPreferencesInfo
|
UserPreferences = new UserPreferencesInfo
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -39,11 +39,15 @@ public class SettingsDbService : ISettingsDbService
|
|||||||
var settings = await _context.Settings.AsNoTracking().FirstOrDefaultAsync();
|
var settings = await _context.Settings.AsNoTracking().FirstOrDefaultAsync();
|
||||||
if (settings == null)
|
if (settings == null)
|
||||||
{
|
{
|
||||||
settings = new AnalyzerSettingsEntity { Id = Guid.NewGuid() };
|
settings = new AnalyzerSettingsEntity { Id = Guid.NewGuid(), UpdatedAt = DateTime.UtcNow };
|
||||||
_context.Settings.Add(settings);
|
_context.Settings.Add(settings);
|
||||||
await _context.SaveChangesAsync();
|
await _context.SaveChangesAsync();
|
||||||
_context.ChangeTracker.Clear();
|
_context.ChangeTracker.Clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Synchronize in-memory static filter values on get
|
||||||
|
SyncLogFilters(settings);
|
||||||
|
|
||||||
return settings;
|
return settings;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -52,10 +56,13 @@ public class SettingsDbService : ISettingsDbService
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public async Task<AnalyzerSettingsEntity> SaveSettingsAsync(AnalyzerSettingsEntity settings)
|
public async Task<AnalyzerSettingsEntity> SaveSettingsAsync(AnalyzerSettingsEntity settings)
|
||||||
{
|
{
|
||||||
var existing = await _context.Settings.FirstOrDefaultAsync();
|
var existing = await _context.Settings.FirstOrDefaultAsync(s => s.Id == settings.Id)
|
||||||
|
?? await _context.Settings.FirstOrDefaultAsync();
|
||||||
|
|
||||||
if (existing == null)
|
if (existing == null)
|
||||||
{
|
{
|
||||||
if (settings.Id == Guid.Empty) settings.Id = Guid.NewGuid();
|
if (settings.Id == Guid.Empty) settings.Id = Guid.NewGuid();
|
||||||
|
settings.UpdatedAt = DateTime.UtcNow;
|
||||||
_context.Settings.Add(settings);
|
_context.Settings.Add(settings);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -67,19 +74,23 @@ public class SettingsDbService : ISettingsDbService
|
|||||||
existing.EnableLogAnalyzerAuto = settings.EnableLogAnalyzerAuto;
|
existing.EnableLogAnalyzerAuto = settings.EnableLogAnalyzerAuto;
|
||||||
existing.EnableLogAnalyzerManual = settings.EnableLogAnalyzerManual;
|
existing.EnableLogAnalyzerManual = settings.EnableLogAnalyzerManual;
|
||||||
existing.EnableLogDatabaseOps = settings.EnableLogDatabaseOps;
|
existing.EnableLogDatabaseOps = settings.EnableLogDatabaseOps;
|
||||||
existing.UpdatedAt = settings.UpdatedAt;
|
existing.UpdatedAt = DateTime.UtcNow;
|
||||||
_context.Settings.Update(existing);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
await _context.SaveChangesAsync();
|
await _context.SaveChangesAsync();
|
||||||
|
|
||||||
// Synchronize in-memory static filter values
|
SyncLogFilters(settings);
|
||||||
|
|
||||||
|
return settings;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void SyncLogFilters(AnalyzerSettingsEntity settings)
|
||||||
|
{
|
||||||
LogCategoryFilter.EnableLogMqttHealthPing = settings.EnableLogMqttHealthPing;
|
LogCategoryFilter.EnableLogMqttHealthPing = settings.EnableLogMqttHealthPing;
|
||||||
LogCategoryFilter.EnableLogMqttGeneral = settings.EnableLogMqttGeneral;
|
LogCategoryFilter.EnableLogMqttGeneral = settings.EnableLogMqttGeneral;
|
||||||
LogCategoryFilter.EnableLogAnalyzerAuto = settings.EnableLogAnalyzerAuto;
|
LogCategoryFilter.EnableLogAnalyzerAuto = settings.EnableLogAnalyzerAuto;
|
||||||
LogCategoryFilter.EnableLogAnalyzerManual = settings.EnableLogAnalyzerManual;
|
LogCategoryFilter.EnableLogAnalyzerManual = settings.EnableLogAnalyzerManual;
|
||||||
LogCategoryFilter.EnableLogDatabaseOps = settings.EnableLogDatabaseOps;
|
LogCategoryFilter.EnableLogDatabaseOps = settings.EnableLogDatabaseOps;
|
||||||
|
|
||||||
return settings;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ public class ThreeLayerFilterEngine : IThreeLayerFilterEngine
|
|||||||
{
|
{
|
||||||
private readonly ILogger<ThreeLayerFilterEngine> _logger;
|
private readonly ILogger<ThreeLayerFilterEngine> _logger;
|
||||||
private readonly ConcurrentDictionary<string, DateTime> _seenEvents = new();
|
private readonly ConcurrentDictionary<string, DateTime> _seenEvents = new();
|
||||||
|
private readonly object _cleanupLock = new();
|
||||||
private DateTime _lastCleanupTime = DateTime.UtcNow;
|
private DateTime _lastCleanupTime = DateTime.UtcNow;
|
||||||
|
|
||||||
public ThreeLayerFilterEngine(ILogger<ThreeLayerFilterEngine> logger)
|
public ThreeLayerFilterEngine(ILogger<ThreeLayerFilterEngine> logger)
|
||||||
@@ -37,10 +38,16 @@ public class ThreeLayerFilterEngine : IThreeLayerFilterEngine
|
|||||||
string eventId = newsEvent.Id.ToString();
|
string eventId = newsEvent.Id.ToString();
|
||||||
var now = DateTime.UtcNow;
|
var now = DateTime.UtcNow;
|
||||||
|
|
||||||
// Safely clean up dictionary every 30 minutes
|
// Safely clean up dictionary every 30 minutes (thread-safe lock)
|
||||||
if ((now - _lastCleanupTime).TotalMinutes > 30 || _seenEvents.Count > 10000)
|
if ((now - _lastCleanupTime).TotalMinutes > 30 || _seenEvents.Count > 10000)
|
||||||
{
|
{
|
||||||
CleanupSeenEvents(now);
|
lock (_cleanupLock)
|
||||||
|
{
|
||||||
|
if ((now - _lastCleanupTime).TotalMinutes > 30 || _seenEvents.Count > 10000)
|
||||||
|
{
|
||||||
|
CleanupSeenEvents(now);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Deduplication check (keep history for 12 hours)
|
// Deduplication check (keep history for 12 hours)
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
@@ -12,6 +13,11 @@ public class WinRateCalculator : IWinRateCalculator
|
|||||||
{
|
{
|
||||||
private readonly ILogger<WinRateCalculator> _logger;
|
private readonly ILogger<WinRateCalculator> _logger;
|
||||||
private readonly string _feedbackDir;
|
private readonly string _feedbackDir;
|
||||||
|
|
||||||
|
private readonly object _cacheLock = new();
|
||||||
|
private List<TradeFeedbackRecord>? _cachedRecords;
|
||||||
|
private DateTime _lastCacheTime = DateTime.MinValue;
|
||||||
|
private static readonly TimeSpan CacheTtl = TimeSpan.FromMinutes(3);
|
||||||
|
|
||||||
public WinRateCalculator(ILogger<WinRateCalculator> logger)
|
public WinRateCalculator(ILogger<WinRateCalculator> logger)
|
||||||
{
|
{
|
||||||
@@ -25,41 +31,25 @@ public class WinRateCalculator : IWinRateCalculator
|
|||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Calculates the win rate for a given sector and symbol under the specified market regime.
|
/// Calculates the win rate for a given sector and symbol under the specified market regime.
|
||||||
|
/// Uses cached feedback records (3-minute TTL) to prevent disk I/O bottlenecks.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public double CalculateWinRate(string sector, string symbol, VixMarketRegime regime)
|
public double CalculateWinRate(string sector, string symbol, VixMarketRegime regime)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if (!Directory.Exists(_feedbackDir)) return 65.0;
|
var records = GetCachedOrLoadRecords();
|
||||||
|
if (records.Count == 0) return 65.0;
|
||||||
|
|
||||||
var jsonFiles = Directory.GetFiles(_feedbackDir, "*.json", SearchOption.AllDirectories);
|
var matching = records.Where(r =>
|
||||||
if (jsonFiles.Length == 0) return 65.0;
|
string.Equals(r.Sector, sector, StringComparison.OrdinalIgnoreCase) &&
|
||||||
|
r.VixRegime == regime).ToList();
|
||||||
|
|
||||||
int totalTrades = 0;
|
if (matching.Count > 0)
|
||||||
int winningTrades = 0;
|
|
||||||
|
|
||||||
foreach (var file in jsonFiles)
|
|
||||||
{
|
{
|
||||||
var content = File.ReadAllText(file);
|
int winningTrades = matching.Count(r => r.IsWin);
|
||||||
var records = JsonSerializer.Deserialize<TradeFeedbackRecord[]>(content);
|
double calculatedWinRate = (double)winningTrades / matching.Count * 100.0;
|
||||||
if (records == null || records.Length == 0) continue;
|
|
||||||
|
|
||||||
var matching = records.Where(r =>
|
|
||||||
string.Equals(r.Sector, sector, StringComparison.OrdinalIgnoreCase) &&
|
|
||||||
r.VixRegime == regime).ToList();
|
|
||||||
|
|
||||||
foreach (var rec in matching)
|
|
||||||
{
|
|
||||||
totalTrades++;
|
|
||||||
if (rec.IsWin) winningTrades++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (totalTrades > 0)
|
|
||||||
{
|
|
||||||
double calculatedWinRate = (double)winningTrades / totalTrades * 100.0;
|
|
||||||
_logger.LogInformation("[{Channel}] Calculated win-rate for Sector '{Sector}' in Regime '{Regime}': {WinRate:F1}% ({Wins}/{Total})",
|
_logger.LogInformation("[{Channel}] Calculated win-rate for Sector '{Sector}' in Regime '{Regime}': {WinRate:F1}% ({Wins}/{Total})",
|
||||||
"AnalyzerChannel", sector, regime, calculatedWinRate, winningTrades, totalTrades);
|
"AnalyzerChannel", sector, regime, calculatedWinRate, winningTrades, matching.Count);
|
||||||
return Math.Round(calculatedWinRate, 1);
|
return Math.Round(calculatedWinRate, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -70,4 +60,42 @@ public class WinRateCalculator : IWinRateCalculator
|
|||||||
|
|
||||||
return 65.0; // Default baseline win-rate
|
return 65.0; // Default baseline win-rate
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private List<TradeFeedbackRecord> GetCachedOrLoadRecords()
|
||||||
|
{
|
||||||
|
lock (_cacheLock)
|
||||||
|
{
|
||||||
|
if (_cachedRecords != null && (DateTime.UtcNow - _lastCacheTime) < CacheTtl)
|
||||||
|
{
|
||||||
|
return _cachedRecords;
|
||||||
|
}
|
||||||
|
|
||||||
|
var loadedList = new List<TradeFeedbackRecord>();
|
||||||
|
|
||||||
|
if (Directory.Exists(_feedbackDir))
|
||||||
|
{
|
||||||
|
var jsonFiles = Directory.GetFiles(_feedbackDir, "*.json", SearchOption.AllDirectories);
|
||||||
|
foreach (var file in jsonFiles)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var content = File.ReadAllText(file);
|
||||||
|
var records = JsonSerializer.Deserialize<TradeFeedbackRecord[]>(content);
|
||||||
|
if (records != null && records.Length > 0)
|
||||||
|
{
|
||||||
|
loadedList.AddRange(records);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.LogWarning(ex, "[{Channel}] Failed to read or parse feedback file '{File}'", "AnalyzerChannel", file);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_cachedRecords = loadedList;
|
||||||
|
_lastCacheTime = DateTime.UtcNow;
|
||||||
|
return _cachedRecords;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -79,7 +79,6 @@ public class AnalyzerMqttClient : ManagedMqttClient, IHostedService
|
|||||||
_logger.LogInformation("[{Channel}] Analyzer MQTT Client connected. Subscribing to topics and RPC response channels...", "AnalyzerChannel");
|
_logger.LogInformation("[{Channel}] Analyzer MQTT Client connected. Subscribing to topics and RPC response channels...", "AnalyzerChannel");
|
||||||
|
|
||||||
// Incoming Event Topics
|
// Incoming Event Topics
|
||||||
await SubscribeAsync("services/news/completed");
|
|
||||||
await SubscribeAsync("services/news/#");
|
await SubscribeAsync("services/news/#");
|
||||||
await SubscribeAsync("finlytic/news/raw/#");
|
await SubscribeAsync("finlytic/news/raw/#");
|
||||||
await SubscribeAsync("finlytic/market/ticks/#");
|
await SubscribeAsync("finlytic/market/ticks/#");
|
||||||
@@ -420,7 +419,21 @@ public class AnalyzerMqttClient : ManagedMqttClient, IHostedService
|
|||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
_logger.LogError(ex, "[{Channel}] Failed to handle manual trigger.", "AnalyzerChannel");
|
_logger.LogError(ex, "[{Channel}] Failed to handle manual trigger for correlation {CorrelationId}.", "AnalyzerChannel", correlationId);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var errorResponse = new ManualAnalysisResponseDto
|
||||||
|
{
|
||||||
|
Status = "ERROR",
|
||||||
|
Message = $"Analysis failed: {ex.Message}"
|
||||||
|
};
|
||||||
|
await PublishAsync($"services/response/analyzer_TriggerManual/{correlationId}",
|
||||||
|
JsonSerializer.Serialize(errorResponse, FinlyticJsonSerializerContext.Default.ManualAnalysisResponseDto));
|
||||||
|
}
|
||||||
|
catch (Exception pubEx)
|
||||||
|
{
|
||||||
|
_logger.LogError(pubEx, "[{Channel}] Failed to publish error response for correlation {CorrelationId}.", "AnalyzerChannel", correlationId);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -522,11 +535,23 @@ public class AnalyzerMqttClient : ManagedMqttClient, IHostedService
|
|||||||
{
|
{
|
||||||
var isinReq = new IsinRequest(filterResult.Isin);
|
var isinReq = new IsinRequest(filterResult.Isin);
|
||||||
|
|
||||||
livePriceResp = await SendRpcRequestAsync<FinlyticCore.Dtos.TechnicalAnalysis.LivePriceDto, IsinRequest>(
|
// Parallel RPC calls (was sequential — up to 12s latency reduced to ~3s)
|
||||||
"tr_GetLivePrice", isinReq, TimeSpan.FromSeconds(3));
|
var livePriceTask = SendRpcRequestAsync<FinlyticCore.Dtos.TechnicalAnalysis.LivePriceDto, IsinRequest>(
|
||||||
|
"tr_GetLivePrice", isinReq, TimeSpan.FromSeconds(5));
|
||||||
taResp = await SendRpcRequestAsync<FinlyticCore.Dtos.TechnicalAnalysis.TechnicalAnalysisDto, IsinRequest>(
|
var taTask = SendRpcRequestAsync<FinlyticCore.Dtos.TechnicalAnalysis.TechnicalAnalysisDto, IsinRequest>(
|
||||||
"ta_GetAnalysis", isinReq, TimeSpan.FromSeconds(3));
|
"ta_GetAnalysis", isinReq, TimeSpan.FromSeconds(5));
|
||||||
|
var fundTask = SendRpcRequestAsync<FinlyticCore.Dtos.Fundamentals.AssetFundamentalsDto, IsinRequest>(
|
||||||
|
"fundamentals_Get", isinReq, TimeSpan.FromSeconds(5));
|
||||||
|
var sentTask = SendRpcRequestAsync<FinlyticCore.Dtos.Sentiment.IsinSentimentSummaryDto, IsinRequest>(
|
||||||
|
"sentiment_GetIsin", isinReq, TimeSpan.FromSeconds(5));
|
||||||
|
|
||||||
|
await Task.WhenAll(livePriceTask, taTask, fundTask, sentTask);
|
||||||
|
|
||||||
|
livePriceResp = livePriceTask.Result;
|
||||||
|
taResp = taTask.Result;
|
||||||
|
fundResp = fundTask.Result;
|
||||||
|
var sentResp = sentTask.Result;
|
||||||
|
|
||||||
if (taResp?.Indicators != null)
|
if (taResp?.Indicators != null)
|
||||||
{
|
{
|
||||||
var latestIndicator = taResp.Indicators.LastOrDefault();
|
var latestIndicator = taResp.Indicators.LastOrDefault();
|
||||||
@@ -547,8 +572,6 @@ public class AnalyzerMqttClient : ManagedMqttClient, IHostedService
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
fundResp = await SendRpcRequestAsync<FinlyticCore.Dtos.Fundamentals.AssetFundamentalsDto, IsinRequest>(
|
|
||||||
"fundamentals_Get", isinReq, TimeSpan.FromSeconds(3));
|
|
||||||
if (fundResp != null)
|
if (fundResp != null)
|
||||||
{
|
{
|
||||||
resolvedSymbol = !string.IsNullOrWhiteSpace(fundResp.Ticker) ? fundResp.Ticker : resolvedSymbol;
|
resolvedSymbol = !string.IsNullOrWhiteSpace(fundResp.Ticker) ? fundResp.Ticker : resolvedSymbol;
|
||||||
@@ -571,8 +594,6 @@ public class AnalyzerMqttClient : ManagedMqttClient, IHostedService
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
var sentResp = await SendRpcRequestAsync<FinlyticCore.Dtos.Sentiment.IsinSentimentSummaryDto, IsinRequest>(
|
|
||||||
"sentiment_GetIsin", isinReq, TimeSpan.FromSeconds(3));
|
|
||||||
if (sentResp != null)
|
if (sentResp != null)
|
||||||
{
|
{
|
||||||
sentInfo = new SentimentContextInfo
|
sentInfo = new SentimentContextInfo
|
||||||
|
|||||||
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -6,7 +6,14 @@
|
|||||||
"padded_top_topics_start_index": 0,
|
"padded_top_topics_start_index": 0,
|
||||||
"taxonomy_version": 0,
|
"taxonomy_version": 0,
|
||||||
"top_topics_and_observing_domains": [ ]
|
"top_topics_and_observing_domains": [ ]
|
||||||
|
}, {
|
||||||
|
"calculation_time": "13430784010401195",
|
||||||
|
"config_version": 0,
|
||||||
|
"model_version": "0",
|
||||||
|
"padded_top_topics_start_index": 0,
|
||||||
|
"taxonomy_version": 0,
|
||||||
|
"top_topics_and_observing_domains": [ ]
|
||||||
} ],
|
} ],
|
||||||
"hex_encoded_hmac_key": "B6F2F708445BA6FD9AE93FC13F58B9FFE00F622BAC8C7EDCF364F58F7F466A75",
|
"hex_encoded_hmac_key": "B6F2F708445BA6FD9AE93FC13F58B9FFE00F622BAC8C7EDCF364F58F7F466A75",
|
||||||
"next_scheduled_calculation_time": "13430655456556985"
|
"next_scheduled_calculation_time": "13431388810401320"
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
@@ -1,9 +1,13 @@
|
|||||||
2026/08/05-21:31:05.209 6624 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\EdgeCoupons/coupons_data.db/MANIFEST-000001
|
2026/08/11-23:31:50.206 95c Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\EdgeCoupons/coupons_data.db/MANIFEST-000001
|
||||||
2026/08/05-21:31:05.210 6624 Recovering log #13
|
2026/08/11-23:31:50.207 95c Recovering log #23
|
||||||
2026/08/05-21:31:05.211 6624 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\EdgeCoupons/coupons_data.db/000013.log
|
2026/08/11-23:31:50.208 95c Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\EdgeCoupons/coupons_data.db/000023.log
|
||||||
2026/08/05-21:31:05.211 6624 Delete type=0 #4
|
2026/08/11-23:31:50.209 95c Delete type=0 #4
|
||||||
2026/08/05-21:31:05.212 6624 Delete type=0 #7
|
2026/08/11-23:31:50.209 95c Delete type=0 #7
|
||||||
2026/08/05-21:31:05.212 6624 Delete type=0 #10
|
2026/08/11-23:31:50.209 95c Delete type=2 #8
|
||||||
2026/08/05-21:31:25.638 2bf0 Level-0 table #17: started
|
2026/08/11-23:31:50.209 95c Delete type=0 #10
|
||||||
2026/08/05-21:31:25.642 2bf0 Level-0 table #17: 683332 bytes OK
|
2026/08/11-23:31:50.209 95c Delete type=2 #11
|
||||||
2026/08/05-21:31:25.644 2bf0 Delete type=0 #13
|
2026/08/11-23:31:50.209 95c Delete type=0 #13
|
||||||
|
2026/08/11-23:31:50.209 95c Delete type=2 #14
|
||||||
|
2026/08/11-23:31:50.209 95c Delete type=0 #16
|
||||||
|
2026/08/11-23:31:50.249 95c Delete type=2 #17
|
||||||
|
2026/08/11-23:31:50.250 95c Delete type=0 #19
|
||||||
|
|||||||
@@ -1,8 +1,15 @@
|
|||||||
2026/08/04-22:51:57.518 4210 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\EdgeCoupons/coupons_data.db/MANIFEST-000001
|
2026/08/10-22:38:51.117 7960 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\EdgeCoupons/coupons_data.db/MANIFEST-000001
|
||||||
2026/08/04-22:51:57.519 4210 Recovering log #10
|
2026/08/10-22:38:51.118 7960 Recovering log #19
|
||||||
2026/08/04-22:51:57.519 4210 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\EdgeCoupons/coupons_data.db/000010.log
|
2026/08/10-22:38:51.118 7960 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\EdgeCoupons/coupons_data.db/000019.log
|
||||||
2026/08/04-22:51:57.520 4210 Delete type=0 #4
|
2026/08/10-22:38:51.119 7960 Delete type=0 #4
|
||||||
2026/08/04-22:51:57.520 4210 Delete type=0 #7
|
2026/08/10-22:38:51.119 7960 Delete type=0 #7
|
||||||
2026/08/04-23:39:18.422 2ad8 Level-0 table #14: started
|
2026/08/10-22:38:51.119 7960 Delete type=2 #8
|
||||||
2026/08/04-23:39:18.425 2ad8 Level-0 table #14: 683332 bytes OK
|
2026/08/10-22:38:51.119 7960 Delete type=0 #10
|
||||||
2026/08/04-23:39:18.428 2ad8 Delete type=0 #10
|
2026/08/10-22:38:51.119 7960 Delete type=2 #11
|
||||||
|
2026/08/10-22:38:51.119 7960 Delete type=0 #13
|
||||||
|
2026/08/10-22:38:51.119 7960 Delete type=2 #14
|
||||||
|
2026/08/10-22:38:51.122 7960 Delete type=0 #16
|
||||||
|
2026/08/10-22:38:51.122 7960 Delete type=2 #17
|
||||||
|
2026/08/10-22:43:31.470 4b80 Level-0 table #24: started
|
||||||
|
2026/08/10-22:43:31.473 4b80 Level-0 table #24: 683332 bytes OK
|
||||||
|
2026/08/10-22:43:31.476 4b80 Delete type=0 #19
|
||||||
|
|||||||
BIN
Binary file not shown.
Binary file not shown.
@@ -35,3 +35,36 @@
|
|||||||
{"logTime": "0805/193104", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430089257699509, for SessionType SessionRestore"}
|
{"logTime": "0805/193104", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430089257699509, for SessionType SessionRestore"}
|
||||||
{"logTime": "0805/193104", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430050656644037, for SessionType SessionRestore"}
|
{"logTime": "0805/193104", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430050656644037, for SessionType SessionRestore"}
|
||||||
{"logTime": "0805/205906", "session": "END"}
|
{"logTime": "0805/205906", "session": "END"}
|
||||||
|
{"logTime": "0809/212007", "session": "START"}
|
||||||
|
{"logTime": "0809/212007", "level": "INFO", "location": "chrome\\browser\\ui\\startup\\startup_browser_creator_impl.cc:353 EdgeLogLastSessionExitTypeOnStartup", "message": "Previous Session Exit Type: PreviousSessionExitType::kNormalBrowserShutDown"}
|
||||||
|
{"logTime": "0809/212007", "level": "INFO", "location": "chrome\\browser\\ui\\startup\\startup_browser_creator_impl.cc:1431 DetermineURLsAndLaunch", "message": "Startup Preference: 0"}
|
||||||
|
{"logTime": "0809/212007", "level": "INFO", "location": "chrome\\browser\\ui\\startup\\startup_browser_creator_impl.cc:1433 DetermineURLsAndLaunch", "message": "Browser Open Behavior: 0"}
|
||||||
|
{"logTime": "0809/212009", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Valid session file found: SessionRestore"}
|
||||||
|
{"logTime": "0809/212009", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430350314630125, for SessionType SessionRestore"}
|
||||||
|
{"logTime": "0809/212009", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430261414417274, for SessionType SessionRestore"}
|
||||||
|
{"logTime": "0809/212009", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430089257699509, for SessionType SessionRestore"}
|
||||||
|
{"logTime": "0809/212009", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430050656644037, for SessionType SessionRestore"}
|
||||||
|
{"logTime": "0809/213559", "session": "END"}
|
||||||
|
{"logTime": "0810/203848", "session": "START"}
|
||||||
|
{"logTime": "0810/203848", "level": "INFO", "location": "chrome\\browser\\ui\\startup\\startup_browser_creator_impl.cc:353 EdgeLogLastSessionExitTypeOnStartup", "message": "Previous Session Exit Type: PreviousSessionExitType::kNormalBrowserShutDown"}
|
||||||
|
{"logTime": "0810/203848", "level": "INFO", "location": "chrome\\browser\\ui\\startup\\startup_browser_creator_impl.cc:1431 DetermineURLsAndLaunch", "message": "Startup Preference: 0"}
|
||||||
|
{"logTime": "0810/203848", "level": "INFO", "location": "chrome\\browser\\ui\\startup\\startup_browser_creator_impl.cc:1433 DetermineURLsAndLaunch", "message": "Browser Open Behavior: 0"}
|
||||||
|
{"logTime": "0810/203850", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Valid session file found: SessionRestore"}
|
||||||
|
{"logTime": "0810/203850", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430431864565749, for SessionType SessionRestore"}
|
||||||
|
{"logTime": "0810/203850", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430350314630125, for SessionType SessionRestore"}
|
||||||
|
{"logTime": "0810/203850", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430261414417274, for SessionType SessionRestore"}
|
||||||
|
{"logTime": "0810/203850", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430089257699509, for SessionType SessionRestore"}
|
||||||
|
{"logTime": "0810/203850", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430050656644037, for SessionType SessionRestore"}
|
||||||
|
{"logTime": "0810/213623", "session": "END"}
|
||||||
|
{"logTime": "0811/213145", "session": "START"}
|
||||||
|
{"logTime": "0811/213145", "level": "INFO", "location": "chrome\\browser\\ui\\startup\\startup_browser_creator_impl.cc:353 EdgeLogLastSessionExitTypeOnStartup", "message": "Previous Session Exit Type: PreviousSessionExitType::kNormalBrowserShutDown"}
|
||||||
|
{"logTime": "0811/213145", "level": "INFO", "location": "chrome\\browser\\ui\\startup\\startup_browser_creator_impl.cc:1431 DetermineURLsAndLaunch", "message": "Startup Preference: 0"}
|
||||||
|
{"logTime": "0811/213145", "level": "INFO", "location": "chrome\\browser\\ui\\startup\\startup_browser_creator_impl.cc:1433 DetermineURLsAndLaunch", "message": "Browser Open Behavior: 0"}
|
||||||
|
{"logTime": "0811/213148", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Valid session file found: SessionRestore"}
|
||||||
|
{"logTime": "0811/213148", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430784009592248, for SessionType SessionRestore"}
|
||||||
|
{"logTime": "0811/213148", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430431864565749, for SessionType SessionRestore"}
|
||||||
|
{"logTime": "0811/213148", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430350314630125, for SessionType SessionRestore"}
|
||||||
|
{"logTime": "0811/213148", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430261414417274, for SessionType SessionRestore"}
|
||||||
|
{"logTime": "0811/213148", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430089257699509, for SessionType SessionRestore"}
|
||||||
|
{"logTime": "0811/213148", "level": "INFO", "location": "components\\sessions\\core\\command_storage_manager.cc:618 operator()", "message": "Delete session file Session_13430050656644037, for SessionType SessionRestore"}
|
||||||
|
{"logTime": "0811/213341", "session": "END"}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
@@ -1,3 +1,3 @@
|
|||||||
2026/08/05-21:31:02.084 6350 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Extension Rules/MANIFEST-000001
|
2026/08/11-23:31:45.890 4e54 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Extension Rules/MANIFEST-000001
|
||||||
2026/08/05-21:31:02.084 6350 Recovering log #3
|
2026/08/11-23:31:45.891 4e54 Recovering log #3
|
||||||
2026/08/05-21:31:02.085 6350 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Extension Rules/000003.log
|
2026/08/11-23:31:45.891 4e54 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Extension Rules/000003.log
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
2026/08/04-22:51:52.185 334 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Extension Rules/MANIFEST-000001
|
2026/08/10-22:38:48.205 3874 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Extension Rules/MANIFEST-000001
|
||||||
2026/08/04-22:51:52.185 334 Recovering log #3
|
2026/08/10-22:38:48.205 3874 Recovering log #3
|
||||||
2026/08/04-22:51:52.186 334 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Extension Rules/000003.log
|
2026/08/10-22:38:48.205 3874 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Extension Rules/000003.log
|
||||||
|
|||||||
Binary file not shown.
@@ -1,3 +1,3 @@
|
|||||||
2026/08/05-21:31:02.091 6350 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Extension Scripts/MANIFEST-000001
|
2026/08/11-23:31:45.897 4e54 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Extension Scripts/MANIFEST-000001
|
||||||
2026/08/05-21:31:02.093 6350 Recovering log #3
|
2026/08/11-23:31:45.897 4e54 Recovering log #3
|
||||||
2026/08/05-21:31:02.093 6350 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Extension Scripts/000003.log
|
2026/08/11-23:31:45.898 4e54 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Extension Scripts/000003.log
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
2026/08/04-22:51:52.191 334 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Extension Scripts/MANIFEST-000001
|
2026/08/10-22:38:48.210 3874 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Extension Scripts/MANIFEST-000001
|
||||||
2026/08/04-22:51:52.192 334 Recovering log #3
|
2026/08/10-22:38:48.210 3874 Recovering log #3
|
||||||
2026/08/04-22:51:52.192 334 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Extension Scripts/000003.log
|
2026/08/10-22:38:48.211 3874 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Extension Scripts/000003.log
|
||||||
|
|||||||
Binary file not shown.
@@ -1,3 +1,3 @@
|
|||||||
2026/08/05-21:31:02.379 2bf0 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Extension State/MANIFEST-000001
|
2026/08/11-23:31:46.176 50f0 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Extension State/MANIFEST-000001
|
||||||
2026/08/05-21:31:02.379 2bf0 Recovering log #3
|
2026/08/11-23:31:46.176 50f0 Recovering log #3
|
||||||
2026/08/05-21:31:02.380 2bf0 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Extension State/000003.log
|
2026/08/11-23:31:46.177 50f0 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Extension State/000003.log
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
2026/08/04-22:51:52.441 334 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Extension State/MANIFEST-000001
|
2026/08/10-22:38:48.501 4b80 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Extension State/MANIFEST-000001
|
||||||
2026/08/04-22:51:52.441 334 Recovering log #3
|
2026/08/10-22:38:48.501 4b80 Recovering log #3
|
||||||
2026/08/04-22:51:52.441 334 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Extension State/000003.log
|
2026/08/10-22:38:48.502 4b80 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Extension State/000003.log
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
+3
-3
@@ -1,3 +1,3 @@
|
|||||||
2026/08/05-21:32:59.002 5224 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\IndexedDB\devtools_devtools_0.indexeddb.leveldb/MANIFEST-000001
|
2026/08/10-23:35:02.595 4b80 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\IndexedDB\devtools_devtools_0.indexeddb.leveldb/MANIFEST-000001
|
||||||
2026/08/05-21:32:59.002 5224 Recovering log #4
|
2026/08/10-23:35:02.595 4b80 Recovering log #7
|
||||||
2026/08/05-21:32:59.003 5224 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\IndexedDB\devtools_devtools_0.indexeddb.leveldb/000004.log
|
2026/08/10-23:35:02.595 4b80 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\IndexedDB\devtools_devtools_0.indexeddb.leveldb/000007.log
|
||||||
|
|||||||
+15
-3
@@ -1,3 +1,15 @@
|
|||||||
2026/08/04-22:58:21.294 7484 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\IndexedDB\devtools_devtools_0.indexeddb.leveldb/MANIFEST-000001
|
2026/08/10-23:23:13.920 4b80 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\IndexedDB\devtools_devtools_0.indexeddb.leveldb/MANIFEST-000001
|
||||||
2026/08/04-22:58:21.294 7484 Recovering log #4
|
2026/08/10-23:23:13.921 4b80 Recovering log #4
|
||||||
2026/08/04-22:58:21.294 7484 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\IndexedDB\devtools_devtools_0.indexeddb.leveldb/000004.log
|
2026/08/10-23:23:13.921 4b80 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\IndexedDB\devtools_devtools_0.indexeddb.leveldb/000004.log
|
||||||
|
2026/08/10-23:30:13.758 5bd0 Level-0 table #8: started
|
||||||
|
2026/08/10-23:30:13.775 5bd0 Level-0 table #8: 226 bytes OK
|
||||||
|
2026/08/10-23:30:13.786 5bd0 Delete type=0 #4
|
||||||
|
2026/08/10-23:30:13.787 5bd0 Manual compaction at level-0 from (begin) .. (end); will stop at (end)
|
||||||
|
2026/08/10-23:30:13.787 5bd0 Manual compaction at level-1 from (begin) .. (end); will stop at '\x00\x00\x00\x00\x06' @ 62 : 1
|
||||||
|
2026/08/10-23:30:13.787 5bd0 Compacting 1@1 + 1@2 files
|
||||||
|
2026/08/10-23:30:13.792 5bd0 Generated table #9@1: 23 keys, 557 bytes
|
||||||
|
2026/08/10-23:30:13.792 5bd0 Compacted 1@1 + 1@2 files => 557 bytes
|
||||||
|
2026/08/10-23:30:13.794 5bd0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||||
|
2026/08/10-23:30:13.794 5bd0 Delete type=2 #5
|
||||||
|
2026/08/10-23:30:13.794 5bd0 Delete type=2 #8
|
||||||
|
2026/08/10-23:30:13.795 5bd0 Manual compaction at level-1 from '\x00\x00\x00\x00\x06' @ 62 : 1 .. (end); will stop at (end)
|
||||||
|
|||||||
BIN
Binary file not shown.
+3
-3
@@ -1,3 +1,3 @@
|
|||||||
2026/08/05-21:31:02.427 2bf0 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Local Extension Settings\jdiccldimpdaibmpdkjnbmckianbfold/MANIFEST-000001
|
2026/08/11-23:31:46.171 50f0 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Local Extension Settings\jdiccldimpdaibmpdkjnbmckianbfold/MANIFEST-000001
|
||||||
2026/08/05-21:31:02.427 2bf0 Recovering log #3
|
2026/08/11-23:31:46.171 50f0 Recovering log #3
|
||||||
2026/08/05-21:31:02.427 2bf0 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Local Extension Settings\jdiccldimpdaibmpdkjnbmckianbfold/000003.log
|
2026/08/11-23:31:46.171 50f0 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Local Extension Settings\jdiccldimpdaibmpdkjnbmckianbfold/000003.log
|
||||||
|
|||||||
+3
-3
@@ -1,3 +1,3 @@
|
|||||||
2026/08/04-22:51:52.466 2ad8 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Local Extension Settings\jdiccldimpdaibmpdkjnbmckianbfold/MANIFEST-000001
|
2026/08/10-22:38:48.496 4b80 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Local Extension Settings\jdiccldimpdaibmpdkjnbmckianbfold/MANIFEST-000001
|
||||||
2026/08/04-22:51:52.467 2ad8 Recovering log #3
|
2026/08/10-22:38:48.497 4b80 Recovering log #3
|
||||||
2026/08/04-22:51:52.467 2ad8 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Local Extension Settings\jdiccldimpdaibmpdkjnbmckianbfold/000003.log
|
2026/08/10-22:38:48.497 4b80 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Local Extension Settings\jdiccldimpdaibmpdkjnbmckianbfold/000003.log
|
||||||
|
|||||||
Binary file not shown.
@@ -1,3 +1,8 @@
|
|||||||
2026/08/05-21:31:02.132 4094 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Local Storage\leveldb/MANIFEST-000001
|
2026/08/11-23:31:45.908 5368 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Local Storage\leveldb/MANIFEST-000001
|
||||||
2026/08/05-21:31:02.139 4094 Recovering log #3
|
2026/08/11-23:31:45.912 5368 Recovering log #3
|
||||||
2026/08/05-21:31:02.142 4094 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Local Storage\leveldb/000003.log
|
2026/08/11-23:31:45.912 5368 Level-0 table #3: started
|
||||||
|
2026/08/11-23:31:45.917 5368 Level-0 table #3: 27897 bytes OK
|
||||||
|
2026/08/11-23:31:45.917 5368 Recovering log #4
|
||||||
|
2026/08/11-23:31:45.920 5368 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Local Storage\leveldb/000004.log
|
||||||
|
2026/08/11-23:31:45.922 5368 Delete type=0 #3
|
||||||
|
2026/08/11-23:31:45.922 5368 Delete type=2 #5
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
2026/08/04-22:51:52.203 5c5c Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Local Storage\leveldb/MANIFEST-000001
|
2026/08/10-22:38:48.242 190c Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Local Storage\leveldb/MANIFEST-000001
|
||||||
2026/08/04-22:51:52.214 5c5c Recovering log #3
|
2026/08/10-22:38:48.246 190c Recovering log #3
|
||||||
2026/08/04-22:51:52.217 5c5c Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Local Storage\leveldb/000003.log
|
2026/08/10-22:38:48.248 190c Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Local Storage\leveldb/000003.log
|
||||||
|
2026/08/10-23:36:23.164 5e00 Level-0 table #5: started
|
||||||
|
2026/08/10-23:36:23.170 5e00 Level-0 table #5: 27897 bytes OK
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
@@ -1 +1 @@
|
|||||||
{"sts":[{"expiry":1817412719.887427,"host":"E2grh36KYBPKcpj8t8jB5P5zpjI7nyFG6NVRcHFibQ4=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1785876719.88743},{"expiry":1817499546.627688,"host":"OuKlWsMW1dkkbI1X/oi6o0Y95ZNSWnSoeaIXAEYPlv4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1785963546.627689},{"expiry":1817494265.675546,"host":"PKqosHGXLFTwexcsjC+UXTkKV3GWWHwtzKz/ULb9ssM=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1785958265.675548},{"expiry":1817494264.3256,"host":"XfQ4sL0YUsz0d2efIucTK4gCZsiYC8a7DpHfg2YLsps=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1785958264.325602},{"expiry":1817494262.968869,"host":"nAuqgR4iEWti7SOdT3UHPl6rmZU/DeaIm38P2O2OkgA=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1785958262.968872},{"expiry":1817494265.521471,"host":"rmnekbKAq/dxKc3O5aFRkaYg4kOrb8ehfGdmdZ4sxZ0=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1785958265.521477},{"expiry":1817494264.586678,"host":"7tSAOAx10AkpkhAGpc2+WxFucu2Qg9/ypzW0ZDwcltE=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1785958264.586681}],"version":2}
|
{"sts":[{"expiry":1817933775.683156,"host":"B6AXuzZLGG97vjnwF7wx0l7EcservwUEMn/6xq+3XeU=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1786397775.683159},{"expiry":1818019914.838454,"host":"E2grh36KYBPKcpj8t8jB5P5zpjI7nyFG6NVRcHFibQ4=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1786483914.838457},{"expiry":1817933704.037421,"host":"Imip1Y7nHfPZTYQgI7EifDZOyiqlFeRT0HU8heztW1Q=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1786397704.037424},{"expiry":1817933478.109443,"host":"Jqurao51Ii2ik2L333aYJZMZL/1huuAWcJKIw3RDdy8=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1786397478.109445},{"expiry":1817933699.518875,"host":"KcbWAXnoPL+I6rflLsYJJuaUOJyqfmpTWy0jfHf+pfk=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1786397699.518878},{"expiry":1817933768.413509,"host":"KdPYVONcL8Q8Fq4yTKlpWJmAS/CRKiJ7tFAwQ9TQpUo=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1786397768.413513},{"expiry":1817933781.217954,"host":"K8nNagTbI3hnZC3xmo4KKuLQOxSH6wPBY87a+bxCmhI=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1786397781.217957},{"expiry":1817846579.63741,"host":"Mrhkytqi5a+5SqjNm+BlTzQkzpfkQMT31YM3RSLQ/U8=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1786310579.637412},{"expiry":1817933480.336147,"host":"M4bfUnCmQAi4PNb3B8aI/2+SVJhHKsMfMMT7fzi6ij4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1786397480.33615},{"expiry":1817933483.226198,"host":"OkcoriPvFby30zsX+UEwmbHNMnIeIy/UZB0ca7wDP40=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1786397483.2262},{"expiry":1818019996.426821,"host":"OuKlWsMW1dkkbI1X/oi6o0Y95ZNSWnSoeaIXAEYPlv4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1786483996.426824},{"expiry":1817933480.428281,"host":"PBpfVbhJMSTFJe+o0NXJ0ygDF3F5gO5VsP23Yu+Eex4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1786397480.428284},{"expiry":1818019912.908784,"host":"PKqosHGXLFTwexcsjC+UXTkKV3GWWHwtzKz/ULb9ssM=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1786483912.908786},{"expiry":1818019910.31817,"host":"XfQ4sL0YUsz0d2efIucTK4gCZsiYC8a7DpHfg2YLsps=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1786483910.318174},{"expiry":1817933482.606139,"host":"egdkMUjLTLk5/EIcmMZrEknGxegVXBfuHONolFX42Ns=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1786397482.606141},{"expiry":1817933707.526504,"host":"fbRAPKLRPRT1j5V8oJzybaVzdpP8qtdRra4+FmWV3CI=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1786397707.526506},{"expiry":1818019906.841968,"host":"nAuqgR4iEWti7SOdT3UHPl6rmZU/DeaIm38P2O2OkgA=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1786483906.84197},{"expiry":1817846577.598227,"host":"ofvmP7oW+0RwTFJSZyupPak3ZVHEb6IkoKJ+1IOU6KA=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1786310577.598229},{"expiry":1817933783.118597,"host":"orePd9rNSlekPnxKdXlDk5n5/alBAOuliWN2jgnMWf4=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1786397783.118598},{"expiry":1817933704.804195,"host":"qaDeFdT1UTirY0OQe+c5LKw+zjx6vF/+3vFh7CgrAOY=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1786397704.804197},{"expiry":1817933480.981929,"host":"rJqa85YHBGBHea8wSNPfCMMKMgiQZeq2nO3tUyvtgWI=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1786397480.981931},{"expiry":1818019936.292354,"host":"rmnekbKAq/dxKc3O5aFRkaYg4kOrb8ehfGdmdZ4sxZ0=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1786483936.292357},{"expiry":1787693512.442664,"host":"zi8JlNTXaMJ4ItuOkNurrynRee2qQ3s7zYEjUGufIRE=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1786483912.442666},{"expiry":1817846577.679582,"host":"3IYUBX7IrDAL2Q2p9rScEEGJmIAY8KrSJk/nyCS1o04=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1786310577.679585},{"expiry":1818019906.280417,"host":"7tSAOAx10AkpkhAGpc2+WxFucu2Qg9/ypzW0ZDwcltE=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1786483906.28043},{"expiry":1817933483.084554,"host":"/MnWlMLgi3kqszs2YcP4C5Ck57g5EBGXmQ1sTITVMoI=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1786397483.084555},{"expiry":1817933677.818657,"host":"/d33uIJEv2VeAZFidpD8ekVPipj6egsj17W3vb3BuDw=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1786397677.818658}],"version":2}
|
||||||
+468
@@ -986,3 +986,471 @@ AddLoginSync
|
|||||||
AddLoginSync
|
AddLoginSync
|
||||||
13430431866915854
|
13430431866915854
|
||||||
AddLoginSync
|
AddLoginSync
|
||||||
|
13430784014565787
|
||||||
|
AddLoginSync
|
||||||
|
13430784014566608
|
||||||
|
AddLoginSync
|
||||||
|
13430784014567304
|
||||||
|
AddLoginSync
|
||||||
|
13430784014568110
|
||||||
|
AddLoginSync
|
||||||
|
13430784014582195
|
||||||
|
AddLoginSync
|
||||||
|
13430784014583089
|
||||||
|
AddLoginSync
|
||||||
|
13430784014583810
|
||||||
|
AddLoginSync
|
||||||
|
13430784014584554
|
||||||
|
AddLoginSync
|
||||||
|
13430784014585171
|
||||||
|
AddLoginSync
|
||||||
|
13430784014585767
|
||||||
|
AddLoginSync
|
||||||
|
13430784014586330
|
||||||
|
AddLoginSync
|
||||||
|
13430784014586889
|
||||||
|
AddLoginSync
|
||||||
|
13430784014587522
|
||||||
|
AddLoginSync
|
||||||
|
13430784014588064
|
||||||
|
AddLoginSync
|
||||||
|
13430784014588646
|
||||||
|
AddLoginSync
|
||||||
|
13430784014589415
|
||||||
|
AddLoginSync
|
||||||
|
13430784014643936
|
||||||
|
AddLoginSync
|
||||||
|
13430784014644943
|
||||||
|
AddLoginSync
|
||||||
|
13430784014645593
|
||||||
|
AddLoginSync
|
||||||
|
13430784014646197
|
||||||
|
AddLoginSync
|
||||||
|
13430784014659300
|
||||||
|
AddLoginSync
|
||||||
|
13430784014660289
|
||||||
|
AddLoginSync
|
||||||
|
13430784014660901
|
||||||
|
AddLoginSync
|
||||||
|
13430784014661476
|
||||||
|
AddLoginSync
|
||||||
|
13430784014662055
|
||||||
|
AddLoginSync
|
||||||
|
13430784014662609
|
||||||
|
AddLoginSync
|
||||||
|
13430784014663196
|
||||||
|
AddLoginSync
|
||||||
|
13430784014663770
|
||||||
|
AddLoginSync
|
||||||
|
13430784014664368
|
||||||
|
AddLoginSync
|
||||||
|
13430784014665029
|
||||||
|
AddLoginSync
|
||||||
|
13430784014665556
|
||||||
|
AddLoginSync
|
||||||
|
13430784014666099
|
||||||
|
AddLoginSync
|
||||||
|
13430784014666664
|
||||||
|
AddLoginSync
|
||||||
|
13430784014667235
|
||||||
|
AddLoginSync
|
||||||
|
13430784014667900
|
||||||
|
AddLoginSync
|
||||||
|
13430784014668489
|
||||||
|
AddLoginSync
|
||||||
|
13430784014669045
|
||||||
|
AddLoginSync
|
||||||
|
13430784014669659
|
||||||
|
AddLoginSync
|
||||||
|
13430784014670351
|
||||||
|
AddLoginSync
|
||||||
|
13430784014671032
|
||||||
|
AddLoginSync
|
||||||
|
13430784014671658
|
||||||
|
AddLoginSync
|
||||||
|
13430784014672274
|
||||||
|
AddLoginSync
|
||||||
|
13430784014672869
|
||||||
|
AddLoginSync
|
||||||
|
13430784014673723
|
||||||
|
AddLoginSync
|
||||||
|
13430784014675429
|
||||||
|
AddLoginSync
|
||||||
|
13430784014676155
|
||||||
|
AddLoginSync
|
||||||
|
13430784014676791
|
||||||
|
AddLoginSync
|
||||||
|
13430784014677407
|
||||||
|
AddLoginSync
|
||||||
|
13430784014678055
|
||||||
|
AddLoginSync
|
||||||
|
13430784014679120
|
||||||
|
AddLoginSync
|
||||||
|
13430784014679752
|
||||||
|
AddLoginSync
|
||||||
|
13430784014680513
|
||||||
|
AddLoginSync
|
||||||
|
13430784014681431
|
||||||
|
AddLoginSync
|
||||||
|
13430784014682093
|
||||||
|
AddLoginSync
|
||||||
|
13430784014682713
|
||||||
|
AddLoginSync
|
||||||
|
13430784014683324
|
||||||
|
AddLoginSync
|
||||||
|
13430784014683925
|
||||||
|
AddLoginSync
|
||||||
|
13430784014684722
|
||||||
|
AddLoginSync
|
||||||
|
13430784014685277
|
||||||
|
AddLoginSync
|
||||||
|
13430784014685897
|
||||||
|
AddLoginSync
|
||||||
|
13430784014686477
|
||||||
|
AddLoginSync
|
||||||
|
13430784014687002
|
||||||
|
AddLoginSync
|
||||||
|
13430784014687594
|
||||||
|
AddLoginSync
|
||||||
|
13430784014688168
|
||||||
|
AddLoginSync
|
||||||
|
13430784014688727
|
||||||
|
AddLoginSync
|
||||||
|
13430784014689346
|
||||||
|
AddLoginSync
|
||||||
|
13430784014690277
|
||||||
|
AddLoginSync
|
||||||
|
13430784014690936
|
||||||
|
AddLoginSync
|
||||||
|
13430784014691733
|
||||||
|
AddLoginSync
|
||||||
|
13430784014692397
|
||||||
|
AddLoginSync
|
||||||
|
13430784014693078
|
||||||
|
AddLoginSync
|
||||||
|
13430784014693712
|
||||||
|
AddLoginSync
|
||||||
|
13430784014694342
|
||||||
|
AddLoginSync
|
||||||
|
13430784014695075
|
||||||
|
AddLoginSync
|
||||||
|
13430784014695692
|
||||||
|
AddLoginSync
|
||||||
|
13430784014696275
|
||||||
|
AddLoginSync
|
||||||
|
13430784014696846
|
||||||
|
AddLoginSync
|
||||||
|
13430784014697410
|
||||||
|
AddLoginSync
|
||||||
|
13430867933139574
|
||||||
|
AddLoginSync
|
||||||
|
13430867933140592
|
||||||
|
AddLoginSync
|
||||||
|
13430867933141225
|
||||||
|
AddLoginSync
|
||||||
|
13430867933164149
|
||||||
|
AddLoginSync
|
||||||
|
13430867933165030
|
||||||
|
AddLoginSync
|
||||||
|
13430867933165669
|
||||||
|
AddLoginSync
|
||||||
|
13430867933166325
|
||||||
|
AddLoginSync
|
||||||
|
13430867933167012
|
||||||
|
AddLoginSync
|
||||||
|
13430867933167602
|
||||||
|
AddLoginSync
|
||||||
|
13430867933168195
|
||||||
|
AddLoginSync
|
||||||
|
13430867933168912
|
||||||
|
AddLoginSync
|
||||||
|
13430867933169561
|
||||||
|
AddLoginSync
|
||||||
|
13430867933170090
|
||||||
|
AddLoginSync
|
||||||
|
13430867933170640
|
||||||
|
AddLoginSync
|
||||||
|
13430867933171167
|
||||||
|
AddLoginSync
|
||||||
|
13430867933171718
|
||||||
|
AddLoginSync
|
||||||
|
13430867933172305
|
||||||
|
AddLoginSync
|
||||||
|
13430867933172840
|
||||||
|
AddLoginSync
|
||||||
|
13430867933173315
|
||||||
|
AddLoginSync
|
||||||
|
13430867933173832
|
||||||
|
AddLoginSync
|
||||||
|
13430867933174325
|
||||||
|
AddLoginSync
|
||||||
|
13430867933174813
|
||||||
|
AddLoginSync
|
||||||
|
13430867933175328
|
||||||
|
AddLoginSync
|
||||||
|
13430867933175951
|
||||||
|
AddLoginSync
|
||||||
|
13430867933176824
|
||||||
|
AddLoginSync
|
||||||
|
13430867933177297
|
||||||
|
AddLoginSync
|
||||||
|
13430867933177779
|
||||||
|
AddLoginSync
|
||||||
|
13430867933190497
|
||||||
|
AddLoginSync
|
||||||
|
13430867933210782
|
||||||
|
AddLoginSync
|
||||||
|
13430867933211478
|
||||||
|
AddLoginSync
|
||||||
|
13430867933212005
|
||||||
|
AddLoginSync
|
||||||
|
13430867933212560
|
||||||
|
AddLoginSync
|
||||||
|
13430867933213062
|
||||||
|
AddLoginSync
|
||||||
|
13430867933213629
|
||||||
|
AddLoginSync
|
||||||
|
13430867933214138
|
||||||
|
AddLoginSync
|
||||||
|
13430867933214647
|
||||||
|
AddLoginSync
|
||||||
|
13430867933241564
|
||||||
|
AddLoginSync
|
||||||
|
13430867933257263
|
||||||
|
AddLoginSync
|
||||||
|
13430867933258072
|
||||||
|
AddLoginSync
|
||||||
|
13430867933258771
|
||||||
|
AddLoginSync
|
||||||
|
13430867933259439
|
||||||
|
AddLoginSync
|
||||||
|
13430867933272982
|
||||||
|
AddLoginSync
|
||||||
|
13430867933273670
|
||||||
|
AddLoginSync
|
||||||
|
13430867933274374
|
||||||
|
AddLoginSync
|
||||||
|
13430867933274982
|
||||||
|
AddLoginSync
|
||||||
|
13430867933288149
|
||||||
|
AddLoginSync
|
||||||
|
13430867933288767
|
||||||
|
AddLoginSync
|
||||||
|
13430867933289253
|
||||||
|
AddLoginSync
|
||||||
|
13430867933289673
|
||||||
|
AddLoginSync
|
||||||
|
13430867933290180
|
||||||
|
AddLoginSync
|
||||||
|
13430867933290763
|
||||||
|
AddLoginSync
|
||||||
|
13430867933291343
|
||||||
|
AddLoginSync
|
||||||
|
13430867933291819
|
||||||
|
AddLoginSync
|
||||||
|
13430867933292909
|
||||||
|
AddLoginSync
|
||||||
|
13430867933293828
|
||||||
|
AddLoginSync
|
||||||
|
13430867933294407
|
||||||
|
AddLoginSync
|
||||||
|
13430867933295017
|
||||||
|
AddLoginSync
|
||||||
|
13430867933295593
|
||||||
|
AddLoginSync
|
||||||
|
13430867933296168
|
||||||
|
AddLoginSync
|
||||||
|
13430867933296745
|
||||||
|
AddLoginSync
|
||||||
|
13430867933297434
|
||||||
|
AddLoginSync
|
||||||
|
13430867933298013
|
||||||
|
AddLoginSync
|
||||||
|
13430867933323381
|
||||||
|
AddLoginSync
|
||||||
|
13430867933324200
|
||||||
|
AddLoginSync
|
||||||
|
13430867933324868
|
||||||
|
AddLoginSync
|
||||||
|
13430867933325495
|
||||||
|
AddLoginSync
|
||||||
|
13430867933326130
|
||||||
|
AddLoginSync
|
||||||
|
13430867933327430
|
||||||
|
AddLoginSync
|
||||||
|
13430867933328195
|
||||||
|
AddLoginSync
|
||||||
|
13430867933329641
|
||||||
|
AddLoginSync
|
||||||
|
13430867933354340
|
||||||
|
AddLoginSync
|
||||||
|
13430867933355336
|
||||||
|
AddLoginSync
|
||||||
|
13430867933356014
|
||||||
|
AddLoginSync
|
||||||
|
13430867933356689
|
||||||
|
AddLoginSync
|
||||||
|
13430867933358277
|
||||||
|
AddLoginSync
|
||||||
|
13430867933358959
|
||||||
|
AddLoginSync
|
||||||
|
13430867933363516
|
||||||
|
AddLoginSync
|
||||||
|
13430867933382110
|
||||||
|
AddLoginSync
|
||||||
|
13430957513744618
|
||||||
|
AddLoginSync
|
||||||
|
13430957513745128
|
||||||
|
AddLoginSync
|
||||||
|
13430957513745609
|
||||||
|
AddLoginSync
|
||||||
|
13430957513746044
|
||||||
|
AddLoginSync
|
||||||
|
13430957513769547
|
||||||
|
AddLoginSync
|
||||||
|
13430957513770175
|
||||||
|
AddLoginSync
|
||||||
|
13430957513770585
|
||||||
|
AddLoginSync
|
||||||
|
13430957513770980
|
||||||
|
AddLoginSync
|
||||||
|
13430957513771495
|
||||||
|
AddLoginSync
|
||||||
|
13430957513771960
|
||||||
|
AddLoginSync
|
||||||
|
13430957513772352
|
||||||
|
AddLoginSync
|
||||||
|
13430957513772745
|
||||||
|
AddLoginSync
|
||||||
|
13430957513773131
|
||||||
|
AddLoginSync
|
||||||
|
13430957513773527
|
||||||
|
AddLoginSync
|
||||||
|
13430957513773924
|
||||||
|
AddLoginSync
|
||||||
|
13430957513774326
|
||||||
|
AddLoginSync
|
||||||
|
13430957513774717
|
||||||
|
AddLoginSync
|
||||||
|
13430957513775141
|
||||||
|
AddLoginSync
|
||||||
|
13430957513775556
|
||||||
|
AddLoginSync
|
||||||
|
13430957513775951
|
||||||
|
AddLoginSync
|
||||||
|
13430957513776346
|
||||||
|
AddLoginSync
|
||||||
|
13430957513776737
|
||||||
|
AddLoginSync
|
||||||
|
13430957513777181
|
||||||
|
AddLoginSync
|
||||||
|
13430957513777671
|
||||||
|
AddLoginSync
|
||||||
|
13430957513778077
|
||||||
|
AddLoginSync
|
||||||
|
13430957513778519
|
||||||
|
AddLoginSync
|
||||||
|
13430957513778927
|
||||||
|
AddLoginSync
|
||||||
|
13430957513779316
|
||||||
|
AddLoginSync
|
||||||
|
13430957513779706
|
||||||
|
AddLoginSync
|
||||||
|
13430957513780130
|
||||||
|
AddLoginSync
|
||||||
|
13430957513780512
|
||||||
|
AddLoginSync
|
||||||
|
13430957513780966
|
||||||
|
AddLoginSync
|
||||||
|
13430957513781415
|
||||||
|
AddLoginSync
|
||||||
|
13430957513781829
|
||||||
|
AddLoginSync
|
||||||
|
13430957513782228
|
||||||
|
AddLoginSync
|
||||||
|
13430957513782622
|
||||||
|
AddLoginSync
|
||||||
|
13430957513783023
|
||||||
|
AddLoginSync
|
||||||
|
13430957513783412
|
||||||
|
AddLoginSync
|
||||||
|
13430957513783805
|
||||||
|
AddLoginSync
|
||||||
|
13430957513784219
|
||||||
|
AddLoginSync
|
||||||
|
13430957513784617
|
||||||
|
AddLoginSync
|
||||||
|
13430957513785241
|
||||||
|
AddLoginSync
|
||||||
|
13430957513785671
|
||||||
|
AddLoginSync
|
||||||
|
13430957513786198
|
||||||
|
AddLoginSync
|
||||||
|
13430957513786612
|
||||||
|
AddLoginSync
|
||||||
|
13430957513787037
|
||||||
|
AddLoginSync
|
||||||
|
13430957513787458
|
||||||
|
AddLoginSync
|
||||||
|
13430957513787872
|
||||||
|
AddLoginSync
|
||||||
|
13430957513788367
|
||||||
|
AddLoginSync
|
||||||
|
13430957513788794
|
||||||
|
AddLoginSync
|
||||||
|
13430957513789185
|
||||||
|
AddLoginSync
|
||||||
|
13430957513789575
|
||||||
|
AddLoginSync
|
||||||
|
13430957513789977
|
||||||
|
AddLoginSync
|
||||||
|
13430957513790365
|
||||||
|
AddLoginSync
|
||||||
|
13430957513790787
|
||||||
|
AddLoginSync
|
||||||
|
13430957513791229
|
||||||
|
AddLoginSync
|
||||||
|
13430957513791623
|
||||||
|
AddLoginSync
|
||||||
|
13430957513792060
|
||||||
|
AddLoginSync
|
||||||
|
13430957513792461
|
||||||
|
AddLoginSync
|
||||||
|
13430957513792862
|
||||||
|
AddLoginSync
|
||||||
|
13430957513793252
|
||||||
|
AddLoginSync
|
||||||
|
13430957513793639
|
||||||
|
AddLoginSync
|
||||||
|
13430957513794122
|
||||||
|
AddLoginSync
|
||||||
|
13430957513794505
|
||||||
|
AddLoginSync
|
||||||
|
13430957513794888
|
||||||
|
AddLoginSync
|
||||||
|
13430957513795273
|
||||||
|
AddLoginSync
|
||||||
|
13430957513795659
|
||||||
|
AddLoginSync
|
||||||
|
13430957513796043
|
||||||
|
AddLoginSync
|
||||||
|
13430957513796431
|
||||||
|
AddLoginSync
|
||||||
|
13430957513796820
|
||||||
|
AddLoginSync
|
||||||
|
13430957513797206
|
||||||
|
AddLoginSync
|
||||||
|
13430957513797590
|
||||||
|
AddLoginSync
|
||||||
|
13430957513798003
|
||||||
|
AddLoginSync
|
||||||
|
13430957513798389
|
||||||
|
AddLoginSync
|
||||||
|
13430957513798793
|
||||||
|
AddLoginSync
|
||||||
|
13430957513799184
|
||||||
|
AddLoginSync
|
||||||
|
13430957513799598
|
||||||
|
AddLoginSync
|
||||||
|
13430957513800005
|
||||||
|
AddLoginSync
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
@@ -1,3 +1,3 @@
|
|||||||
2026/08/05-21:31:02.056 6730 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Service Worker\Database/MANIFEST-000001
|
2026/08/11-23:31:45.849 2868 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Service Worker\Database/MANIFEST-000001
|
||||||
2026/08/05-21:31:02.057 6730 Recovering log #3
|
2026/08/11-23:31:45.850 2868 Recovering log #3
|
||||||
2026/08/05-21:31:02.057 6730 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Service Worker\Database/000003.log
|
2026/08/11-23:31:45.850 2868 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Service Worker\Database/000003.log
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
2026/08/04-22:51:52.131 39fc Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Service Worker\Database/MANIFEST-000001
|
2026/08/10-22:38:48.182 7af4 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Service Worker\Database/MANIFEST-000001
|
||||||
2026/08/04-22:51:52.132 39fc Recovering log #3
|
2026/08/10-22:38:48.183 7af4 Recovering log #3
|
||||||
2026/08/04-22:51:52.132 39fc Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Service Worker\Database/000003.log
|
2026/08/10-22:38:48.184 7af4 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Service Worker\Database/000003.log
|
||||||
|
|||||||
Binary file not shown.
@@ -1,3 +1,4 @@
|
|||||||
2026/08/05-21:31:02.144 470c Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Session Storage/MANIFEST-000001
|
2026/08/11-23:31:45.917 7268 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Session Storage/MANIFEST-000001
|
||||||
2026/08/05-21:31:02.145 470c Recovering log #3
|
2026/08/11-23:31:45.918 7268 Recovering log #4
|
||||||
2026/08/05-21:31:02.148 470c Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Session Storage/000003.log
|
2026/08/11-23:31:45.921 7268 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Session Storage/000004.log
|
||||||
|
2026/08/11-23:31:45.922 7268 Delete type=0 #3
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
2026/08/04-22:51:52.286 5c5c Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Session Storage/MANIFEST-000001
|
2026/08/10-22:38:48.250 7268 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Session Storage/MANIFEST-000001
|
||||||
2026/08/04-22:51:52.287 5c5c Recovering log #3
|
2026/08/10-22:38:48.251 7268 Recovering log #3
|
||||||
2026/08/04-22:51:52.290 5c5c Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Session Storage/000003.log
|
2026/08/10-22:38:48.253 7268 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Session Storage/000003.log
|
||||||
|
2026/08/10-23:36:23.148 190c Level-0 table #5: started
|
||||||
|
2026/08/10-23:36:23.157 190c Level-0 table #5: 21476 bytes OK
|
||||||
|
2026/08/10-23:36:23.164 190c Delete type=0 #3
|
||||||
|
|||||||
Binary file not shown.
Vendored
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,3 +1,3 @@
|
|||||||
2026/08/05-21:31:02.061 59e0 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Site Characteristics Database/MANIFEST-000001
|
2026/08/11-23:31:45.855 7250 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Site Characteristics Database/MANIFEST-000001
|
||||||
2026/08/05-21:31:02.061 59e0 Recovering log #3
|
2026/08/11-23:31:45.856 7250 Recovering log #3
|
||||||
2026/08/05-21:31:02.062 59e0 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Site Characteristics Database/000003.log
|
2026/08/11-23:31:45.856 7250 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Site Characteristics Database/000003.log
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
2026/08/04-22:51:52.132 3f14 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Site Characteristics Database/MANIFEST-000001
|
2026/08/10-22:38:48.185 7864 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Site Characteristics Database/MANIFEST-000001
|
||||||
2026/08/04-22:51:52.134 3f14 Recovering log #3
|
2026/08/10-22:38:48.186 7864 Recovering log #3
|
||||||
2026/08/04-22:51:52.134 3f14 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Site Characteristics Database/000003.log
|
2026/08/10-22:38:48.186 7864 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Site Characteristics Database/000003.log
|
||||||
|
|||||||
BIN
Binary file not shown.
+3
-3
@@ -1,3 +1,3 @@
|
|||||||
2026/08/05-21:31:02.292 470c Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Storage\ext\ihmafllikibpmigkcoadcmckbfhibefp\def\Local Storage\leveldb/MANIFEST-000001
|
2026/08/11-23:31:46.028 7268 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Storage\ext\ihmafllikibpmigkcoadcmckbfhibefp\def\Local Storage\leveldb/MANIFEST-000001
|
||||||
2026/08/05-21:31:02.294 470c Recovering log #3
|
2026/08/11-23:31:46.029 7268 Recovering log #3
|
||||||
2026/08/05-21:31:02.297 470c Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Storage\ext\ihmafllikibpmigkcoadcmckbfhibefp\def\Local Storage\leveldb/000003.log
|
2026/08/11-23:31:46.032 7268 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Storage\ext\ihmafllikibpmigkcoadcmckbfhibefp\def\Local Storage\leveldb/000003.log
|
||||||
|
|||||||
+3
-3
@@ -1,3 +1,3 @@
|
|||||||
2026/08/04-22:51:52.329 5c5c Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Storage\ext\ihmafllikibpmigkcoadcmckbfhibefp\def\Local Storage\leveldb/MANIFEST-000001
|
2026/08/10-22:38:48.354 7268 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Storage\ext\ihmafllikibpmigkcoadcmckbfhibefp\def\Local Storage\leveldb/MANIFEST-000001
|
||||||
2026/08/04-22:51:52.332 5c5c Recovering log #3
|
2026/08/10-22:38:48.355 7268 Recovering log #3
|
||||||
2026/08/04-22:51:52.336 5c5c Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Storage\ext\ihmafllikibpmigkcoadcmckbfhibefp\def\Local Storage\leveldb/000003.log
|
2026/08/10-22:38:48.359 7268 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Storage\ext\ihmafllikibpmigkcoadcmckbfhibefp\def\Local Storage\leveldb/000003.log
|
||||||
|
|||||||
+1
-1
@@ -1 +1 @@
|
|||||||
{"net":{"http_server_properties":{"servers":[{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13433023867163308","port":443,"protocol_str":"quic"}],"anonymization":[3],"network_stats":{"srtt":18606},"server":"https://dns.google","supports_spdy":true}],"supports_quic":{"address":"192.168.178.26","used_quic":true},"version":5},"network_qualities":{"CAASABiAgICA+P////8B":"4G"}}}
|
{"net":{"http_server_properties":{"servers":[{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13433549511058500","port":443,"protocol_str":"quic"}],"anonymization":[3],"network_stats":{"srtt":16643},"server":"https://dns.google","supports_spdy":true}],"supports_quic":{"address":"192.168.178.26","used_quic":true},"version":5},"network_qualities":{"CAASABiAgICA+P////8B":"4G"}}}
|
||||||
+1
-1
@@ -1 +1 @@
|
|||||||
{"sts":[{"expiry":1817494267.163331,"host":"OuKlWsMW1dkkbI1X/oi6o0Y95ZNSWnSoeaIXAEYPlv4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1785958267.163334}],"version":2}
|
{"sts":[{"expiry":1818019911.058524,"host":"OuKlWsMW1dkkbI1X/oi6o0Y95ZNSWnSoeaIXAEYPlv4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1786483911.058528}],"version":2}
|
||||||
BIN
Binary file not shown.
+3
-3
@@ -1,3 +1,3 @@
|
|||||||
2026/08/05-21:31:17.428 470c Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Storage\ext\ihmafllikibpmigkcoadcmckbfhibefp\def\Session Storage/MANIFEST-000001
|
2026/08/11-23:32:01.179 7268 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Storage\ext\ihmafllikibpmigkcoadcmckbfhibefp\def\Session Storage/MANIFEST-000001
|
||||||
2026/08/05-21:31:17.429 470c Recovering log #3
|
2026/08/11-23:32:01.179 7268 Recovering log #3
|
||||||
2026/08/05-21:31:17.431 470c Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Storage\ext\ihmafllikibpmigkcoadcmckbfhibefp\def\Session Storage/000003.log
|
2026/08/11-23:32:01.181 7268 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Storage\ext\ihmafllikibpmigkcoadcmckbfhibefp\def\Session Storage/000003.log
|
||||||
|
|||||||
+3
-3
@@ -1,3 +1,3 @@
|
|||||||
2026/08/04-22:52:07.474 5c5c Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Storage\ext\ihmafllikibpmigkcoadcmckbfhibefp\def\Session Storage/MANIFEST-000001
|
2026/08/10-22:39:03.533 7268 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Storage\ext\ihmafllikibpmigkcoadcmckbfhibefp\def\Session Storage/MANIFEST-000001
|
||||||
2026/08/04-22:52:07.475 5c5c Recovering log #3
|
2026/08/10-22:39:03.535 7268 Recovering log #3
|
||||||
2026/08/04-22:52:07.477 5c5c Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Storage\ext\ihmafllikibpmigkcoadcmckbfhibefp\def\Session Storage/000003.log
|
2026/08/10-22:39:03.539 7268 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Storage\ext\ihmafllikibpmigkcoadcmckbfhibefp\def\Session Storage/000003.log
|
||||||
|
|||||||
BIN
Binary file not shown.
Binary file not shown.
@@ -1,6 +1,4 @@
|
|||||||
2026/08/05-21:31:02.052 6a48 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Sync Data\LevelDB/MANIFEST-000001
|
2026/08/11-23:31:45.845 51a4 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Sync Data\LevelDB/MANIFEST-000001
|
||||||
2026/08/05-21:31:02.055 6a48 Recovering log #3
|
2026/08/11-23:31:45.847 51a4 Recovering log #4
|
||||||
2026/08/05-21:31:02.060 6a48 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Sync Data\LevelDB/000003.log
|
2026/08/11-23:31:45.850 51a4 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Sync Data\LevelDB/000004.log
|
||||||
2026/08/05-21:31:11.883 3bd8 Level-0 table #5: started
|
2026/08/11-23:31:45.850 51a4 Delete type=0 #3
|
||||||
2026/08/05-21:31:11.888 3bd8 Level-0 table #5: 119981 bytes OK
|
|
||||||
2026/08/05-21:31:11.892 3bd8 Delete type=0 #3
|
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
2026/08/04-22:51:52.124 2454 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Sync Data\LevelDB/MANIFEST-000001
|
2026/08/10-22:38:48.180 5bd0 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Sync Data\LevelDB/MANIFEST-000001
|
||||||
2026/08/04-22:51:52.132 2454 Recovering log #3
|
2026/08/10-22:38:48.184 5bd0 Recovering log #4
|
||||||
2026/08/04-22:51:52.137 2454 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Sync Data\LevelDB/000003.log
|
2026/08/10-22:38:48.185 5bd0 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Sync Data\LevelDB/000004.log
|
||||||
|
2026/08/10-22:38:48.186 5bd0 Delete type=0 #3
|
||||||
|
|||||||
@@ -1,300 +1,3 @@
|
|||||||
Contributing types: Sessions}
|
|
||||||
{"logTime": "0801/094420", "correlationVector":"10ufW2LS/p3Jz4qkLH2y2V.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000m"}}
|
|
||||||
{"logTime": "0801/094420", "correlationVector":"10ufW2LS/p3Jz4qkLH2y2V.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=10ufW2LS/p3Jz4qkLH2y2V.0;server=akswtt00400000m;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0801/202100", "correlationVector":"eAqxcJ4c7f7G1V7lcuElMK.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000p"}}
|
|
||||||
{"logTime": "0801/202100", "correlationVector":"eAqxcJ4c7f7G1V7lcuElMK.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Encryption Keys", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
|
||||||
{"logTime": "0801/202101", "correlationVector":"LW+a+OQHQl0MJ2zREP+5Uw","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"", "migrationStage":"", "server":""}}
|
|
||||||
{"logTime": "0801/202101", "correlationVector":"LW+a+OQHQl0MJ2zREP+5Uw.0","action":"EncryptionKeysFetcher.DownloadKeys:", "result":"Success", "context":Key count: 10, Last key timestamp: 2026-07-17T21:16:54Z}
|
|
||||||
{"logTime": "0801/202101", "correlationVector":"LW+a+OQHQl0MJ2zREP+5Uw.1","action":"EncryptionKeysManager::SetEncryptionKeys:", "result":"Success", "context":Key names[10]:[wimgRheq8lOIGfRV4WVcoKimTc/AOq0F+9IwiHp174I5F8axIfO8QCCbjE+9fg1EfqcrdO7m/RW7IuoOLPy6tw==][GdjhGEUfutVDRCUJOikLMkXGcpLd7Uw/1EcmxDQyl/czleXfAbh5HqA0PJRRCznjHzo3toviT7z0JXnA+liXQA==][FyZbP02mdYiJPYKaLVgtmzm6/U83YVKhhqAPS/pTdA4vq7nBrRDI5Jj2dVTByT16R08AkHEVlQHt44fUsFNgug==][YUky7ZK7bd2iWVL7pAvQz7q9P46FaQcoUWpMR1MebQzUvV6HzzY72Uag3T+UDYqQR0ewoBpnVMlAkMpMQZkRHA==][M7X+8hkU1gOr+gt7kESNKrIOQltK7LmM62a/ustC7uHDi5DJZw3djmlzb1VYjx4cZz0ptD/8/fRrQGXwyqdACg==][UECYbawrS/Luzn7cJ88XfKmR+Y5+aSB4P+DY/pbpVzcy0m33QhplS/SidutoXTKC8l/lwsL0tk8bKQDFN6ME5w==][XtlvKPhWPhaxb7J2Nb5w3uMEAu0mvD95RTWTbWb2R7WCJyftcYw6RjvDBhh3rWH7ejepTKMUwN88wsrFXHniqQ==][acPLEjd0BJ/kkL7u0BN30342USMSyJRqddIaZ/Q7F1XyWnkYvzOOFx7cDX/HMxXB/Ec0ojbxV5mVC8Vpb6Hg4w==][CsVCzdBgQ8vnG0XM1FiBJMDfLsF0BLwBbQmnXEgeolbMa15kFSj5pYQN1tvWrrfZA3UFzlpVCsM3pV4DQZzowQ==][Z8gs04R9mP5dM2DtFaTkwSDUYR23ghtyhSkUzNUhotvEHI1q2GS1N6uJRoTzMS+GBwpIqXq8Ovgslujv+2Nt6A==]}
|
|
||||||
{"logTime": "0801/202101", "correlationVector":"LW+a+OQHQl0MJ2zREP+5Uw.2","action":"EncryptionKeysManager::SetEncryptionKeysWithTimestamps:", "result":"Success", "context":Key timestamps[10]:[2023-08-01T10:16:36Z][2023-09-05T18:01:02Z][2024-03-08T21:41:33Z][2024-04-12T06:14:40Z][2024-05-01T06:42:59Z][2024-10-31T20:02:53Z][2025-05-02T20:50:04Z][2025-06-11T10:46:10Z][2025-12-20T17:43:42Z][2026-07-17T21:16:54Z]}
|
|
||||||
{"logTime": "0801/202101", "correlationVector":"eAqxcJ4c7f7G1V7lcuElMK","action":"Initial GetUpdates", "result":"", "context":Reason: NEW_CLIENT. cV=eAqxcJ4c7f7G1V7lcuElMK}
|
|
||||||
{"logTime": "0801/202101", "correlationVector":"eAqxcJ4c7f7G1V7lcuElMK.3","action":"GetUpdates Response", "result":"Success", "context":Received 1 update(s). cV=eAqxcJ4c7f7G1V7lcuElMK.0;server=akswtt00400000p;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0801/202101", "correlationVector":"lCsMrHUseI3J2F1BnMk2QY","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=lCsMrHUseI3J2F1BnMk2QY}
|
|
||||||
{"logTime": "0801/202101", "correlationVector":"lCsMrHUseI3J2F1BnMk2QY.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000q"}}
|
|
||||||
{"logTime": "0801/202101", "correlationVector":"lCsMrHUseI3J2F1BnMk2QY.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Passwords", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"104", "total":"104"}}
|
|
||||||
{"logTime": "0801/202101", "correlationVector":"lCsMrHUseI3J2F1BnMk2QY.3","action":"GetUpdates Response", "result":"Success", "context":Received 104 update(s). cV=lCsMrHUseI3J2F1BnMk2QY.0;server=akswtt00400000q;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0801/202101", "correlationVector":"SbX1JD6bMnJZ0QSHLA+p1l","action":"Normal GetUpdate request", "result":"", "context":cV=SbX1JD6bMnJZ0QSHLA+p1l
|
|
||||||
Nudged types: Sessions, History
|
|
||||||
Refresh requested types: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys}
|
|
||||||
{"logTime": "0801/202102", "correlationVector":"SbX1JD6bMnJZ0QSHLA+p1l.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000d"}}
|
|
||||||
{"logTime": "0801/202102", "correlationVector":"SbX1JD6bMnJZ0QSHLA+p1l.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Preferences", "deleted":"3", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"4", "total":"4"}}
|
|
||||||
{"logTime": "0801/202102", "correlationVector":"SbX1JD6bMnJZ0QSHLA+p1l.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Sessions", "deleted":"4", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"7", "total":"7"}}
|
|
||||||
{"logTime": "0801/202102", "correlationVector":"SbX1JD6bMnJZ0QSHLA+p1l.4","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Device Info", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
|
||||||
{"logTime": "0801/202102", "correlationVector":"SbX1JD6bMnJZ0QSHLA+p1l.5","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"History", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"30", "total":"30"}}
|
|
||||||
{"logTime": "0801/202102", "correlationVector":"SbX1JD6bMnJZ0QSHLA+p1l.6","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Edge Hub App Usage", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
|
||||||
{"logTime": "0801/202102", "correlationVector":"SbX1JD6bMnJZ0QSHLA+p1l.7","action":"GetUpdates Response", "result":"Success", "context":Received 43 update(s). cV=SbX1JD6bMnJZ0QSHLA+p1l.0;server=akswtt00400000d;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0801/202102", "correlationVector":"vzYeOHQYeSHHIrqZ8RQ5wp","action":"Poll GetUpdate request", "result":"", "context":cV=vzYeOHQYeSHHIrqZ8RQ5wp}
|
|
||||||
{"logTime": "0801/202102", "correlationVector":"vzYeOHQYeSHHIrqZ8RQ5wp.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000p"}}
|
|
||||||
{"logTime": "0801/202102", "correlationVector":"vzYeOHQYeSHHIrqZ8RQ5wp.2","action":"GetUpdates Response", "result":"Success", "context":Received 0 update(s). cV=vzYeOHQYeSHHIrqZ8RQ5wp.0;server=akswtt00400000p;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0801/202157", "correlationVector":"8iNSG0bBjQMIopPM5Pzg2q","action":"Commit Request", "result":"", "context":Item count: 3
|
|
||||||
Contributing types: Preferences, Sessions}
|
|
||||||
{"logTime": "0801/202157", "correlationVector":"8iNSG0bBjQMIopPM5Pzg2q.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000p"}}
|
|
||||||
{"logTime": "0801/202157", "correlationVector":"8iNSG0bBjQMIopPM5Pzg2q.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=8iNSG0bBjQMIopPM5Pzg2q.0;server=akswtt00400000p;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0801/202557", "correlationVector":"cMyxz+7Thb3xuY2ddBaGOT","action":"Commit Request", "result":"", "context":Item count: 1
|
|
||||||
Contributing types: Preferences}
|
|
||||||
{"logTime": "0801/202557", "correlationVector":"cMyxz+7Thb3xuY2ddBaGOT.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000p"}}
|
|
||||||
{"logTime": "0801/202557", "correlationVector":"cMyxz+7Thb3xuY2ddBaGOT.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=cMyxz+7Thb3xuY2ddBaGOT.0;server=akswtt00400000p;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0801/202557", "correlationVector":"cMyxz+7Thb3xuY2ddBaGOT.3","action":"Commit.Preferences", "result":"Success", "context":{"id":"0231a422-5232-43cc-8300-2b3687cef86e", "isDeleted":"true", "size":"0", "version":"1785615719345"}}
|
|
||||||
{"logTime": "0801/202730", "correlationVector":"FZO2T1U3jL2iMJvUvgWMEm","action":"Commit Request", "result":"", "context":Item count: 3
|
|
||||||
Contributing types: Sessions, History}
|
|
||||||
{"logTime": "0801/202731", "correlationVector":"FZO2T1U3jL2iMJvUvgWMEm.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000009"}}
|
|
||||||
{"logTime": "0801/202731", "correlationVector":"FZO2T1U3jL2iMJvUvgWMEm.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=FZO2T1U3jL2iMJvUvgWMEm.0;server=akswtt004000009;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0801/202849", "correlationVector":"+DpMK7E+120dwx8Vd0vR+z","action":"Commit Request", "result":"", "context":Item count: 3
|
|
||||||
Contributing types: Sessions, History}
|
|
||||||
{"logTime": "0801/202850", "correlationVector":"+DpMK7E+120dwx8Vd0vR+z.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000s"}}
|
|
||||||
{"logTime": "0801/202850", "correlationVector":"+DpMK7E+120dwx8Vd0vR+z.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=+DpMK7E+120dwx8Vd0vR+z.0;server=akswtt00400000s;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0801/203321", "correlationVector":"QAEgT+QC//ViY7nf2eEIJs","action":"Commit Request", "result":"", "context":Item count: 3
|
|
||||||
Contributing types: Sessions, History}
|
|
||||||
{"logTime": "0801/203322", "correlationVector":"QAEgT+QC//ViY7nf2eEIJs.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000e"}}
|
|
||||||
{"logTime": "0801/203322", "correlationVector":"QAEgT+QC//ViY7nf2eEIJs.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=QAEgT+QC//ViY7nf2eEIJs.0;server=akswtt00400000e;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0801/203709", "correlationVector":"xQEo6HUcmEIGJPs33KQf82","action":"Commit Request", "result":"", "context":Item count: 1
|
|
||||||
Contributing types: Sessions}
|
|
||||||
{"logTime": "0801/203709", "correlationVector":"xQEo6HUcmEIGJPs33KQf82.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000007"}}
|
|
||||||
{"logTime": "0801/203709", "correlationVector":"xQEo6HUcmEIGJPs33KQf82.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=xQEo6HUcmEIGJPs33KQf82.0;server=akswtt004000007;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0801/204324", "correlationVector":"WOume4nl1/Xv++ATgAPpAP","action":"Commit Request", "result":"", "context":Item count: 1
|
|
||||||
Contributing types: Sessions}
|
|
||||||
{"logTime": "0801/204324", "correlationVector":"WOume4nl1/Xv++ATgAPpAP.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000o"}}
|
|
||||||
{"logTime": "0801/204324", "correlationVector":"WOume4nl1/Xv++ATgAPpAP.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=WOume4nl1/Xv++ATgAPpAP.0;server=akswtt00400000o;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0801/204836", "correlationVector":"xJUo3iMvHnmD0GDAmWUVdW","action":"Commit Request", "result":"", "context":Item count: 3
|
|
||||||
Contributing types: Sessions, History}
|
|
||||||
{"logTime": "0801/204838", "correlationVector":"xJUo3iMvHnmD0GDAmWUVdW.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000s"}}
|
|
||||||
{"logTime": "0801/204838", "correlationVector":"xJUo3iMvHnmD0GDAmWUVdW.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=xJUo3iMvHnmD0GDAmWUVdW.0;server=akswtt00400000s;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0801/205620", "correlationVector":"9DK2Wj3xPVcUei1eTKRHr1","action":"Commit Request", "result":"", "context":Item count: 1
|
|
||||||
Contributing types: Sessions}
|
|
||||||
{"logTime": "0801/205621", "correlationVector":"9DK2Wj3xPVcUei1eTKRHr1.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000e"}}
|
|
||||||
{"logTime": "0801/205621", "correlationVector":"9DK2Wj3xPVcUei1eTKRHr1.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=9DK2Wj3xPVcUei1eTKRHr1.0;server=akswtt00400000e;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0801/205914", "correlationVector":"OUkZiwy/3lRtSs5Fxa5/Uo","action":"Commit Request", "result":"", "context":Item count: 3
|
|
||||||
Contributing types: Sessions, History}
|
|
||||||
{"logTime": "0801/205915", "correlationVector":"OUkZiwy/3lRtSs5Fxa5/Uo.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000l"}}
|
|
||||||
{"logTime": "0801/205915", "correlationVector":"OUkZiwy/3lRtSs5Fxa5/Uo.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=OUkZiwy/3lRtSs5Fxa5/Uo.0;server=akswtt00400000l;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0801/210104", "correlationVector":"SlbZPqUYDOyF3L7u2Kbwlj","action":"Commit Request", "result":"", "context":Item count: 1
|
|
||||||
Contributing types: Sessions}
|
|
||||||
{"logTime": "0801/210105", "correlationVector":"SlbZPqUYDOyF3L7u2Kbwlj.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000t"}}
|
|
||||||
{"logTime": "0801/210105", "correlationVector":"SlbZPqUYDOyF3L7u2Kbwlj.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=SlbZPqUYDOyF3L7u2Kbwlj.0;server=akswtt00400000t;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0803/201014", "correlationVector":"mdyKHS4SUtTxQm0X/dyK6K.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000006"}}
|
|
||||||
{"logTime": "0803/201014", "correlationVector":"mdyKHS4SUtTxQm0X/dyK6K.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Encryption Keys", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
|
||||||
{"logTime": "0803/201018", "correlationVector":"gn+tPxpymvhyoHYGj8hB5Q","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"", "migrationStage":"", "server":""}}
|
|
||||||
{"logTime": "0803/201018", "correlationVector":"gn+tPxpymvhyoHYGj8hB5Q.0","action":"EncryptionKeysFetcher.DownloadKeys:", "result":"Success", "context":Key count: 10, Last key timestamp: 2026-07-17T21:16:54Z}
|
|
||||||
{"logTime": "0803/201018", "correlationVector":"gn+tPxpymvhyoHYGj8hB5Q.1","action":"EncryptionKeysManager::SetEncryptionKeys:", "result":"Success", "context":Key names[10]:[wimgRheq8lOIGfRV4WVcoKimTc/AOq0F+9IwiHp174I5F8axIfO8QCCbjE+9fg1EfqcrdO7m/RW7IuoOLPy6tw==][GdjhGEUfutVDRCUJOikLMkXGcpLd7Uw/1EcmxDQyl/czleXfAbh5HqA0PJRRCznjHzo3toviT7z0JXnA+liXQA==][FyZbP02mdYiJPYKaLVgtmzm6/U83YVKhhqAPS/pTdA4vq7nBrRDI5Jj2dVTByT16R08AkHEVlQHt44fUsFNgug==][YUky7ZK7bd2iWVL7pAvQz7q9P46FaQcoUWpMR1MebQzUvV6HzzY72Uag3T+UDYqQR0ewoBpnVMlAkMpMQZkRHA==][M7X+8hkU1gOr+gt7kESNKrIOQltK7LmM62a/ustC7uHDi5DJZw3djmlzb1VYjx4cZz0ptD/8/fRrQGXwyqdACg==][UECYbawrS/Luzn7cJ88XfKmR+Y5+aSB4P+DY/pbpVzcy0m33QhplS/SidutoXTKC8l/lwsL0tk8bKQDFN6ME5w==][XtlvKPhWPhaxb7J2Nb5w3uMEAu0mvD95RTWTbWb2R7WCJyftcYw6RjvDBhh3rWH7ejepTKMUwN88wsrFXHniqQ==][acPLEjd0BJ/kkL7u0BN30342USMSyJRqddIaZ/Q7F1XyWnkYvzOOFx7cDX/HMxXB/Ec0ojbxV5mVC8Vpb6Hg4w==][CsVCzdBgQ8vnG0XM1FiBJMDfLsF0BLwBbQmnXEgeolbMa15kFSj5pYQN1tvWrrfZA3UFzlpVCsM3pV4DQZzowQ==][Z8gs04R9mP5dM2DtFaTkwSDUYR23ghtyhSkUzNUhotvEHI1q2GS1N6uJRoTzMS+GBwpIqXq8Ovgslujv+2Nt6A==]}
|
|
||||||
{"logTime": "0803/201018", "correlationVector":"gn+tPxpymvhyoHYGj8hB5Q.2","action":"EncryptionKeysManager::SetEncryptionKeysWithTimestamps:", "result":"Success", "context":Key timestamps[10]:[2023-08-01T10:16:36Z][2023-09-05T18:01:02Z][2024-03-08T21:41:33Z][2024-04-12T06:14:40Z][2024-05-01T06:42:59Z][2024-10-31T20:02:53Z][2025-05-02T20:50:04Z][2025-06-11T10:46:10Z][2025-12-20T17:43:42Z][2026-07-17T21:16:54Z]}
|
|
||||||
{"logTime": "0803/201018", "correlationVector":"mdyKHS4SUtTxQm0X/dyK6K","action":"Initial GetUpdates", "result":"", "context":Reason: NEW_CLIENT. cV=mdyKHS4SUtTxQm0X/dyK6K}
|
|
||||||
{"logTime": "0803/201018", "correlationVector":"mdyKHS4SUtTxQm0X/dyK6K.3","action":"GetUpdates Response", "result":"Success", "context":Received 1 update(s). cV=mdyKHS4SUtTxQm0X/dyK6K.0;server=akswtt004000006;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0803/201018", "correlationVector":"LqrHIJCsB/r9NqIMdLR5NT","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=LqrHIJCsB/r9NqIMdLR5NT}
|
|
||||||
{"logTime": "0803/201018", "correlationVector":"LqrHIJCsB/r9NqIMdLR5NT.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000t"}}
|
|
||||||
{"logTime": "0803/201018", "correlationVector":"LqrHIJCsB/r9NqIMdLR5NT.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Passwords", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"104", "total":"104"}}
|
|
||||||
{"logTime": "0803/201018", "correlationVector":"LqrHIJCsB/r9NqIMdLR5NT.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Device Info", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"32", "total":"32"}}
|
|
||||||
{"logTime": "0803/201018", "correlationVector":"LqrHIJCsB/r9NqIMdLR5NT.4","action":"GetUpdates Response", "result":"Success", "context":Received 136 update(s). cV=LqrHIJCsB/r9NqIMdLR5NT.0;server=akswtt00400000t;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0803/201018", "correlationVector":"D6VjiX60pVoDzLxeFGiP1k","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=D6VjiX60pVoDzLxeFGiP1k}
|
|
||||||
{"logTime": "0803/201020", "correlationVector":"D6VjiX60pVoDzLxeFGiP1k.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000007"}}
|
|
||||||
{"logTime": "0803/201020", "correlationVector":"D6VjiX60pVoDzLxeFGiP1k.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Bookmarks", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"25", "total":"25"}}
|
|
||||||
{"logTime": "0803/201020", "correlationVector":"D6VjiX60pVoDzLxeFGiP1k.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Preferences", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"86", "total":"86"}}
|
|
||||||
{"logTime": "0803/201020", "correlationVector":"D6VjiX60pVoDzLxeFGiP1k.4","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"75", "total":"75"}}
|
|
||||||
{"logTime": "0803/201020", "correlationVector":"D6VjiX60pVoDzLxeFGiP1k.5","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Extensions", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"3", "total":"3"}}
|
|
||||||
{"logTime": "0803/201020", "correlationVector":"D6VjiX60pVoDzLxeFGiP1k.6","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Extension settings", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"57", "total":"57"}}
|
|
||||||
{"logTime": "0803/201020", "correlationVector":"D6VjiX60pVoDzLxeFGiP1k.7","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Web Apps", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"4", "total":"4"}}
|
|
||||||
{"logTime": "0803/201020", "correlationVector":"D6VjiX60pVoDzLxeFGiP1k.8","action":"GetUpdates Response", "result":"Success", "context":Received 250 update(s). cV=D6VjiX60pVoDzLxeFGiP1k.0;server=akswtt004000007;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted Some updates remain.}
|
|
||||||
{"logTime": "0803/201020", "correlationVector":"lGUZGjJCNYRWTDY26FNxc9","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=lGUZGjJCNYRWTDY26FNxc9}
|
|
||||||
{"logTime": "0803/201021", "correlationVector":"lGUZGjJCNYRWTDY26FNxc9.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000000"}}
|
|
||||||
{"logTime": "0803/201021", "correlationVector":"lGUZGjJCNYRWTDY26FNxc9.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"250", "total":"250"}}
|
|
||||||
{"logTime": "0803/201021", "correlationVector":"lGUZGjJCNYRWTDY26FNxc9.3","action":"GetUpdates Response", "result":"Success", "context":Received 250 update(s). cV=lGUZGjJCNYRWTDY26FNxc9.0;server=akswtt004000000;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted Some updates remain.}
|
|
||||||
{"logTime": "0803/201021", "correlationVector":"cLyzzkzPak1hN4+HdxeSka","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=cLyzzkzPak1hN4+HdxeSka}
|
|
||||||
{"logTime": "0803/201022", "correlationVector":"cLyzzkzPak1hN4+HdxeSka.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000a"}}
|
|
||||||
{"logTime": "0803/201022", "correlationVector":"cLyzzkzPak1hN4+HdxeSka.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"250", "total":"250"}}
|
|
||||||
{"logTime": "0803/201022", "correlationVector":"cLyzzkzPak1hN4+HdxeSka.3","action":"GetUpdates Response", "result":"Success", "context":Received 250 update(s). cV=cLyzzkzPak1hN4+HdxeSka.0;server=akswtt00400000a;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted Some updates remain.}
|
|
||||||
{"logTime": "0803/201022", "correlationVector":"zyABu/5w9lD0gniaqIaKSM","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=zyABu/5w9lD0gniaqIaKSM}
|
|
||||||
{"logTime": "0803/201023", "correlationVector":"zyABu/5w9lD0gniaqIaKSM.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000q"}}
|
|
||||||
{"logTime": "0803/201023", "correlationVector":"zyABu/5w9lD0gniaqIaKSM.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Bookmarks", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
|
||||||
{"logTime": "0803/201023", "correlationVector":"zyABu/5w9lD0gniaqIaKSM.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Preferences", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"15", "total":"15"}}
|
|
||||||
{"logTime": "0803/201023", "correlationVector":"zyABu/5w9lD0gniaqIaKSM.4","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill Profiles", "deleted":"9", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"17", "total":"17"}}
|
|
||||||
{"logTime": "0803/201023", "correlationVector":"zyABu/5w9lD0gniaqIaKSM.5","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"214", "total":"214"}}
|
|
||||||
{"logTime": "0803/201023", "correlationVector":"zyABu/5w9lD0gniaqIaKSM.6","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Extensions", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
|
||||||
{"logTime": "0803/201023", "correlationVector":"zyABu/5w9lD0gniaqIaKSM.7","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Edge Hub App Usage", "deleted":"1", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
|
||||||
{"logTime": "0803/201023", "correlationVector":"zyABu/5w9lD0gniaqIaKSM.8","action":"GetUpdates Response", "result":"Success", "context":Received 250 update(s). cV=zyABu/5w9lD0gniaqIaKSM.0;server=akswtt00400000q;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted Some updates remain.}
|
|
||||||
{"logTime": "0803/201023", "correlationVector":"9FttVg/4TYk4rbe3aFCSXA","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=9FttVg/4TYk4rbe3aFCSXA}
|
|
||||||
{"logTime": "0803/201024", "correlationVector":"9FttVg/4TYk4rbe3aFCSXA.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000t"}}
|
|
||||||
{"logTime": "0803/201024", "correlationVector":"9FttVg/4TYk4rbe3aFCSXA.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill Profiles", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
|
||||||
{"logTime": "0803/201024", "correlationVector":"9FttVg/4TYk4rbe3aFCSXA.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"243", "total":"243"}}
|
|
||||||
{"logTime": "0803/201024", "correlationVector":"9FttVg/4TYk4rbe3aFCSXA.4","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Extensions", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
|
||||||
{"logTime": "0803/201024", "correlationVector":"9FttVg/4TYk4rbe3aFCSXA.5","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Sessions", "deleted":"2", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
|
||||||
{"logTime": "0803/201024", "correlationVector":"9FttVg/4TYk4rbe3aFCSXA.6","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Edge Hub App Usage", "deleted":"1", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
|
||||||
{"logTime": "0803/201024", "correlationVector":"9FttVg/4TYk4rbe3aFCSXA.7","action":"GetUpdates Response", "result":"Success", "context":Received 250 update(s). cV=9FttVg/4TYk4rbe3aFCSXA.0;server=akswtt00400000t;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted Some updates remain.}
|
|
||||||
{"logTime": "0803/201024", "correlationVector":"aOGpu4X+UHI/WpVDtAg1fj","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=aOGpu4X+UHI/WpVDtAg1fj}
|
|
||||||
{"logTime": "0803/201025", "correlationVector":"aOGpu4X+UHI/WpVDtAg1fj.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000q"}}
|
|
||||||
{"logTime": "0803/201025", "correlationVector":"aOGpu4X+UHI/WpVDtAg1fj.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Preferences", "deleted":"15", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"16", "total":"16"}}
|
|
||||||
{"logTime": "0803/201025", "correlationVector":"aOGpu4X+UHI/WpVDtAg1fj.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"9", "total":"9"}}
|
|
||||||
{"logTime": "0803/201025", "correlationVector":"aOGpu4X+UHI/WpVDtAg1fj.4","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Extensions", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
|
||||||
{"logTime": "0803/201025", "correlationVector":"aOGpu4X+UHI/WpVDtAg1fj.5","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Sessions", "deleted":"21", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"56", "total":"56"}}
|
|
||||||
{"logTime": "0803/201025", "correlationVector":"aOGpu4X+UHI/WpVDtAg1fj.6","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Edge Hub App Usage", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
|
||||||
{"logTime": "0803/201025", "correlationVector":"aOGpu4X+UHI/WpVDtAg1fj.7","action":"GetUpdates Response", "result":"Success", "context":Received 84 update(s). cV=aOGpu4X+UHI/WpVDtAg1fj.0;server=akswtt00400000q;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0803/201025", "correlationVector":"BquENi8StfYhTqnOll+PtK","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=BquENi8StfYhTqnOll+PtK}
|
|
||||||
{"logTime": "0803/201026", "correlationVector":"BquENi8StfYhTqnOll+PtK.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000a"}}
|
|
||||||
{"logTime": "0803/201026", "correlationVector":"BquENi8StfYhTqnOll+PtK.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"History", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"232", "total":"232"}}
|
|
||||||
{"logTime": "0803/201026", "correlationVector":"BquENi8StfYhTqnOll+PtK.3","action":"GetUpdates Response", "result":"Success", "context":Received 232 update(s). cV=BquENi8StfYhTqnOll+PtK.0;server=akswtt00400000a;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0803/201026", "correlationVector":"2VqgCZBHiol/89n90xABpZ","action":"Normal GetUpdate request", "result":"", "context":cV=2VqgCZBHiol/89n90xABpZ
|
|
||||||
Nudged types: Sessions, Device Info
|
|
||||||
Refresh requested types: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys}
|
|
||||||
{"logTime": "0803/201026", "correlationVector":"2VqgCZBHiol/89n90xABpZ.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000q"}}
|
|
||||||
{"logTime": "0803/201026", "correlationVector":"2VqgCZBHiol/89n90xABpZ.2","action":"GetUpdates Response", "result":"Success", "context":Received 0 update(s). cV=2VqgCZBHiol/89n90xABpZ.0;server=akswtt00400000q;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0803/201026", "correlationVector":"Gu+m44CxHQZVRwY/AJNMVB","action":"Commit Request", "result":"", "context":Item count: 3
|
|
||||||
Contributing types: Sessions, Device Info}
|
|
||||||
{"logTime": "0803/201027", "correlationVector":"Gu+m44CxHQZVRwY/AJNMVB.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000007"}}
|
|
||||||
{"logTime": "0803/201027", "correlationVector":"Gu+m44CxHQZVRwY/AJNMVB.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=Gu+m44CxHQZVRwY/AJNMVB.0;server=akswtt004000007;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0803/201027", "correlationVector":"sp3vvjuhzN9x5STx0qYCS6","action":"Poll GetUpdate request", "result":"", "context":cV=sp3vvjuhzN9x5STx0qYCS6}
|
|
||||||
{"logTime": "0803/201028", "correlationVector":"sp3vvjuhzN9x5STx0qYCS6.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000t"}}
|
|
||||||
{"logTime": "0803/201028", "correlationVector":"sp3vvjuhzN9x5STx0qYCS6.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Sessions", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
|
||||||
{"logTime": "0803/201028", "correlationVector":"sp3vvjuhzN9x5STx0qYCS6.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Device Info", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
|
||||||
{"logTime": "0803/201028", "correlationVector":"sp3vvjuhzN9x5STx0qYCS6.4","action":"GetUpdates Response", "result":"Success", "context":Received 3 update(s). cV=sp3vvjuhzN9x5STx0qYCS6.0;server=akswtt00400000t;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0803/201113", "correlationVector":"9Ei5O6TJiig/YkgRNr3xl6","action":"Commit Request", "result":"", "context":Item count: 1
|
|
||||||
Contributing types: Preferences}
|
|
||||||
{"logTime": "0803/201114", "correlationVector":"9Ei5O6TJiig/YkgRNr3xl6.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000a"}}
|
|
||||||
{"logTime": "0803/201114", "correlationVector":"9Ei5O6TJiig/YkgRNr3xl6.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=9Ei5O6TJiig/YkgRNr3xl6.0;server=akswtt00400000a;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0803/201306", "correlationVector":"r6DSUdI+s92kyOjTt5bF24","action":"Commit Request", "result":"", "context":Item count: 4
|
|
||||||
Contributing types: Preferences, Sessions, History}
|
|
||||||
{"logTime": "0803/201307", "correlationVector":"r6DSUdI+s92kyOjTt5bF24.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000009"}}
|
|
||||||
{"logTime": "0803/201307", "correlationVector":"r6DSUdI+s92kyOjTt5bF24.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=r6DSUdI+s92kyOjTt5bF24.0;server=akswtt004000009;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0803/201307", "correlationVector":"r6DSUdI+s92kyOjTt5bF24.3","action":"Commit.Preferences", "result":"Success", "context":{"id":"c720d5fd-f92c-475a-9dc5-24985759e5c5", "isDeleted":"true", "size":"0", "version":"1785787874456"}}
|
|
||||||
{"logTime": "0803/201408", "correlationVector":"OEgeNIL3Tsdh/9tTPZzF2e","action":"Commit Request", "result":"", "context":Item count: 1
|
|
||||||
Contributing types: Sessions}
|
|
||||||
{"logTime": "0803/201408", "correlationVector":"OEgeNIL3Tsdh/9tTPZzF2e.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000o"}}
|
|
||||||
{"logTime": "0803/201408", "correlationVector":"OEgeNIL3Tsdh/9tTPZzF2e.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=OEgeNIL3Tsdh/9tTPZzF2e.0;server=akswtt00400000o;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0803/202129", "correlationVector":"2sun4L4WZOO3Sw+PKAlZdp","action":"Commit Request", "result":"", "context":Item count: 3
|
|
||||||
Contributing types: Sessions, History}
|
|
||||||
{"logTime": "0803/202131", "correlationVector":"2sun4L4WZOO3Sw+PKAlZdp.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000i"}}
|
|
||||||
{"logTime": "0803/202131", "correlationVector":"2sun4L4WZOO3Sw+PKAlZdp.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=2sun4L4WZOO3Sw+PKAlZdp.0;server=akswtt00400000i;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0803/202610", "correlationVector":"rCuGn6PRJnh7Ibeqw9UVQR","action":"Commit Request", "result":"", "context":Item count: 3
|
|
||||||
Contributing types: Sessions, History}
|
|
||||||
{"logTime": "0803/202611", "correlationVector":"rCuGn6PRJnh7Ibeqw9UVQR.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000007"}}
|
|
||||||
{"logTime": "0803/202611", "correlationVector":"rCuGn6PRJnh7Ibeqw9UVQR.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=rCuGn6PRJnh7Ibeqw9UVQR.0;server=akswtt004000007;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0804/205158", "correlationVector":"YgidzlEj+ZNl+tlA6TCFPi.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000006"}}
|
|
||||||
{"logTime": "0804/205158", "correlationVector":"YgidzlEj+ZNl+tlA6TCFPi.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Encryption Keys", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
|
||||||
{"logTime": "0804/205158", "correlationVector":"69MK4ZdqON3LT0SXLf+95a","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"", "migrationStage":"", "server":""}}
|
|
||||||
{"logTime": "0804/205158", "correlationVector":"69MK4ZdqON3LT0SXLf+95a.0","action":"EncryptionKeysFetcher.DownloadKeys:", "result":"Success", "context":Key count: 10, Last key timestamp: 2026-07-17T21:16:54Z}
|
|
||||||
{"logTime": "0804/205158", "correlationVector":"69MK4ZdqON3LT0SXLf+95a.1","action":"EncryptionKeysManager::SetEncryptionKeys:", "result":"Success", "context":Key names[10]:[wimgRheq8lOIGfRV4WVcoKimTc/AOq0F+9IwiHp174I5F8axIfO8QCCbjE+9fg1EfqcrdO7m/RW7IuoOLPy6tw==][GdjhGEUfutVDRCUJOikLMkXGcpLd7Uw/1EcmxDQyl/czleXfAbh5HqA0PJRRCznjHzo3toviT7z0JXnA+liXQA==][FyZbP02mdYiJPYKaLVgtmzm6/U83YVKhhqAPS/pTdA4vq7nBrRDI5Jj2dVTByT16R08AkHEVlQHt44fUsFNgug==][YUky7ZK7bd2iWVL7pAvQz7q9P46FaQcoUWpMR1MebQzUvV6HzzY72Uag3T+UDYqQR0ewoBpnVMlAkMpMQZkRHA==][M7X+8hkU1gOr+gt7kESNKrIOQltK7LmM62a/ustC7uHDi5DJZw3djmlzb1VYjx4cZz0ptD/8/fRrQGXwyqdACg==][UECYbawrS/Luzn7cJ88XfKmR+Y5+aSB4P+DY/pbpVzcy0m33QhplS/SidutoXTKC8l/lwsL0tk8bKQDFN6ME5w==][XtlvKPhWPhaxb7J2Nb5w3uMEAu0mvD95RTWTbWb2R7WCJyftcYw6RjvDBhh3rWH7ejepTKMUwN88wsrFXHniqQ==][acPLEjd0BJ/kkL7u0BN30342USMSyJRqddIaZ/Q7F1XyWnkYvzOOFx7cDX/HMxXB/Ec0ojbxV5mVC8Vpb6Hg4w==][CsVCzdBgQ8vnG0XM1FiBJMDfLsF0BLwBbQmnXEgeolbMa15kFSj5pYQN1tvWrrfZA3UFzlpVCsM3pV4DQZzowQ==][Z8gs04R9mP5dM2DtFaTkwSDUYR23ghtyhSkUzNUhotvEHI1q2GS1N6uJRoTzMS+GBwpIqXq8Ovgslujv+2Nt6A==]}
|
|
||||||
{"logTime": "0804/205158", "correlationVector":"69MK4ZdqON3LT0SXLf+95a.2","action":"EncryptionKeysManager::SetEncryptionKeysWithTimestamps:", "result":"Success", "context":Key timestamps[10]:[2023-08-01T10:16:36Z][2023-09-05T18:01:02Z][2024-03-08T21:41:33Z][2024-04-12T06:14:40Z][2024-05-01T06:42:59Z][2024-10-31T20:02:53Z][2025-05-02T20:50:04Z][2025-06-11T10:46:10Z][2025-12-20T17:43:42Z][2026-07-17T21:16:54Z]}
|
|
||||||
{"logTime": "0804/205158", "correlationVector":"YgidzlEj+ZNl+tlA6TCFPi","action":"Initial GetUpdates", "result":"", "context":Reason: NEW_CLIENT. cV=YgidzlEj+ZNl+tlA6TCFPi}
|
|
||||||
{"logTime": "0804/205158", "correlationVector":"YgidzlEj+ZNl+tlA6TCFPi.3","action":"GetUpdates Response", "result":"Success", "context":Received 1 update(s). cV=YgidzlEj+ZNl+tlA6TCFPi.0;server=akswtt004000006;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0804/205158", "correlationVector":"MDk0HgvtHHE9LZVcxw1tFl","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=MDk0HgvtHHE9LZVcxw1tFl}
|
|
||||||
{"logTime": "0804/205159", "correlationVector":"MDk0HgvtHHE9LZVcxw1tFl.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400001b"}}
|
|
||||||
{"logTime": "0804/205159", "correlationVector":"MDk0HgvtHHE9LZVcxw1tFl.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Passwords", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"104", "total":"104"}}
|
|
||||||
{"logTime": "0804/205159", "correlationVector":"MDk0HgvtHHE9LZVcxw1tFl.3","action":"GetUpdates Response", "result":"Success", "context":Received 104 update(s). cV=MDk0HgvtHHE9LZVcxw1tFl.0;server=akswtt00400001b;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0804/205159", "correlationVector":"TqUZHXfRFLp/pfnH957NMP","action":"Normal GetUpdate request", "result":"", "context":cV=TqUZHXfRFLp/pfnH957NMP
|
|
||||||
Nudged types: Sessions, Device Info, History
|
|
||||||
Refresh requested types: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys}
|
|
||||||
{"logTime": "0804/205159", "correlationVector":"TqUZHXfRFLp/pfnH957NMP.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000a"}}
|
|
||||||
{"logTime": "0804/205159", "correlationVector":"TqUZHXfRFLp/pfnH957NMP.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Preferences", "deleted":"3", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"3", "total":"3"}}
|
|
||||||
{"logTime": "0804/205159", "correlationVector":"TqUZHXfRFLp/pfnH957NMP.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill Profiles", "deleted":"2", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
|
||||||
{"logTime": "0804/205159", "correlationVector":"TqUZHXfRFLp/pfnH957NMP.4","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Sessions", "deleted":"1", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"3", "total":"3"}}
|
|
||||||
{"logTime": "0804/205159", "correlationVector":"TqUZHXfRFLp/pfnH957NMP.5","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Device Info", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
|
||||||
{"logTime": "0804/205159", "correlationVector":"TqUZHXfRFLp/pfnH957NMP.6","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"History", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"15", "total":"15"}}
|
|
||||||
{"logTime": "0804/205159", "correlationVector":"TqUZHXfRFLp/pfnH957NMP.7","action":"GetUpdates Response", "result":"Success", "context":Received 24 update(s). cV=TqUZHXfRFLp/pfnH957NMP.0;server=akswtt00400000a;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0804/205159", "correlationVector":"qBbZBU4gpZLKP4HDkCjJ92","action":"Poll GetUpdate request", "result":"", "context":cV=qBbZBU4gpZLKP4HDkCjJ92}
|
|
||||||
{"logTime": "0804/205200", "correlationVector":"qBbZBU4gpZLKP4HDkCjJ92.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000001"}}
|
|
||||||
{"logTime": "0804/205200", "correlationVector":"qBbZBU4gpZLKP4HDkCjJ92.2","action":"GetUpdates Response", "result":"Success", "context":Received 0 update(s). cV=qBbZBU4gpZLKP4HDkCjJ92.0;server=akswtt004000001;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0804/205254", "correlationVector":"wniu3QRv9pmg1wqi1BuuED","action":"Commit Request", "result":"", "context":Item count: 3
|
|
||||||
Contributing types: Preferences, Sessions}
|
|
||||||
{"logTime": "0804/205255", "correlationVector":"wniu3QRv9pmg1wqi1BuuED.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000i"}}
|
|
||||||
{"logTime": "0804/205255", "correlationVector":"wniu3QRv9pmg1wqi1BuuED.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=wniu3QRv9pmg1wqi1BuuED.0;server=akswtt00400000i;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0804/205258", "correlationVector":"tZ0QOqmBeTr/QZLxWEkQix","action":"Commit Request", "result":"", "context":Item count: 1
|
|
||||||
Contributing types: Device Info}
|
|
||||||
{"logTime": "0804/205259", "correlationVector":"tZ0QOqmBeTr/QZLxWEkQix.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000009"}}
|
|
||||||
{"logTime": "0804/205259", "correlationVector":"tZ0QOqmBeTr/QZLxWEkQix.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=tZ0QOqmBeTr/QZLxWEkQix.0;server=akswtt004000009;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0804/205651", "correlationVector":"LWZG2JO4N2hVdu6LX+/hk1","action":"Commit Request", "result":"", "context":Item count: 1
|
|
||||||
Contributing types: Sessions}
|
|
||||||
{"logTime": "0804/205652", "correlationVector":"LWZG2JO4N2hVdu6LX+/hk1.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000f"}}
|
|
||||||
{"logTime": "0804/205652", "correlationVector":"LWZG2JO4N2hVdu6LX+/hk1.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=LWZG2JO4N2hVdu6LX+/hk1.0;server=akswtt00400000f;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0804/205654", "correlationVector":"0T9sfnousfQROn+s8t0Que","action":"Commit Request", "result":"", "context":Item count: 1
|
|
||||||
Contributing types: Preferences}
|
|
||||||
{"logTime": "0804/205654", "correlationVector":"0T9sfnousfQROn+s8t0Que.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000q"}}
|
|
||||||
{"logTime": "0804/205654", "correlationVector":"0T9sfnousfQROn+s8t0Que.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=0T9sfnousfQROn+s8t0Que.0;server=akswtt00400000q;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0804/205654", "correlationVector":"0T9sfnousfQROn+s8t0Que.3","action":"Commit.Preferences", "result":"Success", "context":{"id":"83747599-11ac-487a-b670-341d4897198d", "isDeleted":"true", "size":"0", "version":"1785876775486"}}
|
|
||||||
{"logTime": "0804/210731", "correlationVector":"2IXoK9dcAN5rD0XFd29zZT","action":"Commit Request", "result":"", "context":Item count: 1
|
|
||||||
Contributing types: Sessions}
|
|
||||||
{"logTime": "0804/210731", "correlationVector":"2IXoK9dcAN5rD0XFd29zZT.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000007"}}
|
|
||||||
{"logTime": "0804/210731", "correlationVector":"2IXoK9dcAN5rD0XFd29zZT.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=2IXoK9dcAN5rD0XFd29zZT.0;server=akswtt004000007;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0804/211149", "correlationVector":"QxjwjqaHLvvyCip0P1wf3K","action":"Commit Request", "result":"", "context":Item count: 1
|
|
||||||
Contributing types: Sessions}
|
|
||||||
{"logTime": "0804/211150", "correlationVector":"QxjwjqaHLvvyCip0P1wf3K.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000s"}}
|
|
||||||
{"logTime": "0804/211150", "correlationVector":"QxjwjqaHLvvyCip0P1wf3K.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=QxjwjqaHLvvyCip0P1wf3K.0;server=akswtt00400000s;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0804/211508", "correlationVector":"iqDmCX9CdJgu9xq8qyfqfv","action":"Commit Request", "result":"", "context":Item count: 1
|
|
||||||
Contributing types: Sessions}
|
|
||||||
{"logTime": "0804/211509", "correlationVector":"iqDmCX9CdJgu9xq8qyfqfv.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400001b"}}
|
|
||||||
{"logTime": "0804/211509", "correlationVector":"iqDmCX9CdJgu9xq8qyfqfv.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=iqDmCX9CdJgu9xq8qyfqfv.0;server=akswtt00400001b;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0804/211650", "correlationVector":"QPYcUJ/Ciw2HzjnA1Yodh8","action":"Commit Request", "result":"", "context":Item count: 1
|
|
||||||
Contributing types: Sessions}
|
|
||||||
{"logTime": "0804/211651", "correlationVector":"QPYcUJ/Ciw2HzjnA1Yodh8.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000t"}}
|
|
||||||
{"logTime": "0804/211651", "correlationVector":"QPYcUJ/Ciw2HzjnA1Yodh8.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=QPYcUJ/Ciw2HzjnA1Yodh8.0;server=akswtt00400000t;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0804/211826", "correlationVector":"M3F8UeA1eWUXrahqOCbR2q","action":"Commit Request", "result":"", "context":Item count: 3
|
|
||||||
Contributing types: Sessions, History}
|
|
||||||
{"logTime": "0804/211827", "correlationVector":"M3F8UeA1eWUXrahqOCbR2q.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000004"}}
|
|
||||||
{"logTime": "0804/211827", "correlationVector":"M3F8UeA1eWUXrahqOCbR2q.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=M3F8UeA1eWUXrahqOCbR2q.0;server=akswtt004000004;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0804/213916", "correlationVector":"ivD13S7UlgSKe+inSbe7C+","action":"Commit Request", "result":"", "context":Item count: 1
|
|
||||||
Contributing types: Sessions}
|
|
||||||
{"logTime": "0804/213916", "correlationVector":"ivD13S7UlgSKe+inSbe7C+.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000009"}}
|
|
||||||
{"logTime": "0804/213916", "correlationVector":"ivD13S7UlgSKe+inSbe7C+.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=ivD13S7UlgSKe+inSbe7C+.0;server=akswtt004000009;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0805/193105", "correlationVector":"XMnWc7tZxEZSxW2bodpjeS.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000005"}}
|
|
||||||
{"logTime": "0805/193105", "correlationVector":"XMnWc7tZxEZSxW2bodpjeS.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Encryption Keys", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
|
||||||
{"logTime": "0805/193105", "correlationVector":"ybNDbCWl9eGnd0KAjvMVso","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"", "migrationStage":"", "server":""}}
|
|
||||||
{"logTime": "0805/193105", "correlationVector":"ybNDbCWl9eGnd0KAjvMVso.0","action":"EncryptionKeysFetcher.DownloadKeys:", "result":"Success", "context":Key count: 10, Last key timestamp: 2026-07-17T21:16:54Z}
|
|
||||||
{"logTime": "0805/193105", "correlationVector":"ybNDbCWl9eGnd0KAjvMVso.1","action":"EncryptionKeysManager::SetEncryptionKeys:", "result":"Success", "context":Key names[10]:[wimgRheq8lOIGfRV4WVcoKimTc/AOq0F+9IwiHp174I5F8axIfO8QCCbjE+9fg1EfqcrdO7m/RW7IuoOLPy6tw==][GdjhGEUfutVDRCUJOikLMkXGcpLd7Uw/1EcmxDQyl/czleXfAbh5HqA0PJRRCznjHzo3toviT7z0JXnA+liXQA==][FyZbP02mdYiJPYKaLVgtmzm6/U83YVKhhqAPS/pTdA4vq7nBrRDI5Jj2dVTByT16R08AkHEVlQHt44fUsFNgug==][YUky7ZK7bd2iWVL7pAvQz7q9P46FaQcoUWpMR1MebQzUvV6HzzY72Uag3T+UDYqQR0ewoBpnVMlAkMpMQZkRHA==][M7X+8hkU1gOr+gt7kESNKrIOQltK7LmM62a/ustC7uHDi5DJZw3djmlzb1VYjx4cZz0ptD/8/fRrQGXwyqdACg==][UECYbawrS/Luzn7cJ88XfKmR+Y5+aSB4P+DY/pbpVzcy0m33QhplS/SidutoXTKC8l/lwsL0tk8bKQDFN6ME5w==][XtlvKPhWPhaxb7J2Nb5w3uMEAu0mvD95RTWTbWb2R7WCJyftcYw6RjvDBhh3rWH7ejepTKMUwN88wsrFXHniqQ==][acPLEjd0BJ/kkL7u0BN30342USMSyJRqddIaZ/Q7F1XyWnkYvzOOFx7cDX/HMxXB/Ec0ojbxV5mVC8Vpb6Hg4w==][CsVCzdBgQ8vnG0XM1FiBJMDfLsF0BLwBbQmnXEgeolbMa15kFSj5pYQN1tvWrrfZA3UFzlpVCsM3pV4DQZzowQ==][Z8gs04R9mP5dM2DtFaTkwSDUYR23ghtyhSkUzNUhotvEHI1q2GS1N6uJRoTzMS+GBwpIqXq8Ovgslujv+2Nt6A==]}
|
|
||||||
{"logTime": "0805/193105", "correlationVector":"ybNDbCWl9eGnd0KAjvMVso.2","action":"EncryptionKeysManager::SetEncryptionKeysWithTimestamps:", "result":"Success", "context":Key timestamps[10]:[2023-08-01T10:16:36Z][2023-09-05T18:01:02Z][2024-03-08T21:41:33Z][2024-04-12T06:14:40Z][2024-05-01T06:42:59Z][2024-10-31T20:02:53Z][2025-05-02T20:50:04Z][2025-06-11T10:46:10Z][2025-12-20T17:43:42Z][2026-07-17T21:16:54Z]}
|
|
||||||
{"logTime": "0805/193105", "correlationVector":"XMnWc7tZxEZSxW2bodpjeS","action":"Initial GetUpdates", "result":"", "context":Reason: NEW_CLIENT. cV=XMnWc7tZxEZSxW2bodpjeS}
|
|
||||||
{"logTime": "0805/193105", "correlationVector":"XMnWc7tZxEZSxW2bodpjeS.3","action":"GetUpdates Response", "result":"Success", "context":Received 1 update(s). cV=XMnWc7tZxEZSxW2bodpjeS.0;server=akswtt004000005;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0805/193105", "correlationVector":"lYFuqHk3iwOKlZZYix7FhZ","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=lYFuqHk3iwOKlZZYix7FhZ}
|
|
||||||
{"logTime": "0805/193106", "correlationVector":"lYFuqHk3iwOKlZZYix7FhZ.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000b"}}
|
|
||||||
{"logTime": "0805/193106", "correlationVector":"lYFuqHk3iwOKlZZYix7FhZ.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Passwords", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"104", "total":"104"}}
|
|
||||||
{"logTime": "0805/193106", "correlationVector":"lYFuqHk3iwOKlZZYix7FhZ.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Device Info", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"32", "total":"32"}}
|
|
||||||
{"logTime": "0805/193106", "correlationVector":"lYFuqHk3iwOKlZZYix7FhZ.4","action":"GetUpdates Response", "result":"Success", "context":Received 136 update(s). cV=lYFuqHk3iwOKlZZYix7FhZ.0;server=akswtt00400000b;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0805/193106", "correlationVector":"5DfUosPHK/pUULJffLuvjL","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=5DfUosPHK/pUULJffLuvjL}
|
|
||||||
{"logTime": "0805/193107", "correlationVector":"5DfUosPHK/pUULJffLuvjL.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000j"}}
|
|
||||||
{"logTime": "0805/193107", "correlationVector":"5DfUosPHK/pUULJffLuvjL.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Bookmarks", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"25", "total":"25"}}
|
|
||||||
{"logTime": "0805/193107", "correlationVector":"5DfUosPHK/pUULJffLuvjL.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Preferences", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"86", "total":"86"}}
|
|
||||||
{"logTime": "0805/193107", "correlationVector":"5DfUosPHK/pUULJffLuvjL.4","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"75", "total":"75"}}
|
|
||||||
{"logTime": "0805/193107", "correlationVector":"5DfUosPHK/pUULJffLuvjL.5","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Extensions", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"3", "total":"3"}}
|
|
||||||
{"logTime": "0805/193107", "correlationVector":"5DfUosPHK/pUULJffLuvjL.6","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Extension settings", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"57", "total":"57"}}
|
|
||||||
{"logTime": "0805/193107", "correlationVector":"5DfUosPHK/pUULJffLuvjL.7","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Web Apps", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"4", "total":"4"}}
|
|
||||||
{"logTime": "0805/193107", "correlationVector":"5DfUosPHK/pUULJffLuvjL.8","action":"GetUpdates Response", "result":"Success", "context":Received 250 update(s). cV=5DfUosPHK/pUULJffLuvjL.0;server=akswtt00400000j;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted Some updates remain.}
|
|
||||||
{"logTime": "0805/193107", "correlationVector":"ntVbJBJ/F+upsuCzL3n0lR","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=ntVbJBJ/F+upsuCzL3n0lR}
|
|
||||||
{"logTime": "0805/193108", "correlationVector":"ntVbJBJ/F+upsuCzL3n0lR.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000b"}}
|
|
||||||
{"logTime": "0805/193108", "correlationVector":"ntVbJBJ/F+upsuCzL3n0lR.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"250", "total":"250"}}
|
|
||||||
{"logTime": "0805/193108", "correlationVector":"ntVbJBJ/F+upsuCzL3n0lR.3","action":"GetUpdates Response", "result":"Success", "context":Received 250 update(s). cV=ntVbJBJ/F+upsuCzL3n0lR.0;server=akswtt00400000b;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted Some updates remain.}
|
|
||||||
{"logTime": "0805/193108", "correlationVector":"NY9dW0uW+z0MN4BGlu7DZt","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=NY9dW0uW+z0MN4BGlu7DZt}
|
|
||||||
{"logTime": "0805/193109", "correlationVector":"NY9dW0uW+z0MN4BGlu7DZt.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000000"}}
|
|
||||||
{"logTime": "0805/193109", "correlationVector":"NY9dW0uW+z0MN4BGlu7DZt.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"250", "total":"250"}}
|
|
||||||
{"logTime": "0805/193109", "correlationVector":"NY9dW0uW+z0MN4BGlu7DZt.3","action":"GetUpdates Response", "result":"Success", "context":Received 250 update(s). cV=NY9dW0uW+z0MN4BGlu7DZt.0;server=akswtt004000000;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted Some updates remain.}
|
|
||||||
{"logTime": "0805/193109", "correlationVector":"snVFDKjFwDltjVBq6Sadvf","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=snVFDKjFwDltjVBq6Sadvf}
|
|
||||||
{"logTime": "0805/193110", "correlationVector":"snVFDKjFwDltjVBq6Sadvf.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000019"}}
|
|
||||||
{"logTime": "0805/193110", "correlationVector":"snVFDKjFwDltjVBq6Sadvf.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Bookmarks", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
|
||||||
{"logTime": "0805/193110", "correlationVector":"snVFDKjFwDltjVBq6Sadvf.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Preferences", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"14", "total":"14"}}
|
|
||||||
{"logTime": "0805/193110", "correlationVector":"snVFDKjFwDltjVBq6Sadvf.4","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill Profiles", "deleted":"9", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"15", "total":"15"}}
|
|
||||||
{"logTime": "0805/193110", "correlationVector":"snVFDKjFwDltjVBq6Sadvf.5","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"217", "total":"217"}}
|
|
||||||
{"logTime": "0805/193110", "correlationVector":"snVFDKjFwDltjVBq6Sadvf.6","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Extensions", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
|
||||||
{"logTime": "0805/193110", "correlationVector":"snVFDKjFwDltjVBq6Sadvf.7","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Edge Hub App Usage", "deleted":"1", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
|
||||||
{"logTime": "0805/193110", "correlationVector":"snVFDKjFwDltjVBq6Sadvf.8","action":"GetUpdates Response", "result":"Success", "context":Received 250 update(s). cV=snVFDKjFwDltjVBq6Sadvf.0;server=akswtt004000019;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted Some updates remain.}
|
|
||||||
{"logTime": "0805/193110", "correlationVector":"sXj/GwW3VyOi6izOZyj6VW","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=sXj/GwW3VyOi6izOZyj6VW}
|
|
||||||
{"logTime": "0805/193111", "correlationVector":"sXj/GwW3VyOi6izOZyj6VW.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000b"}}
|
|
||||||
{"logTime": "0805/193111", "correlationVector":"sXj/GwW3VyOi6izOZyj6VW.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill Profiles", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
|
||||||
{"logTime": "0805/193111", "correlationVector":"sXj/GwW3VyOi6izOZyj6VW.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"242", "total":"242"}}
|
|
||||||
{"logTime": "0805/193111", "correlationVector":"sXj/GwW3VyOi6izOZyj6VW.4","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Extensions", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"3", "total":"3"}}
|
|
||||||
{"logTime": "0805/193111", "correlationVector":"sXj/GwW3VyOi6izOZyj6VW.5","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Sessions", "deleted":"2", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
|
||||||
{"logTime": "0805/193111", "correlationVector":"sXj/GwW3VyOi6izOZyj6VW.6","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Edge Hub App Usage", "deleted":"1", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
|
||||||
{"logTime": "0805/193111", "correlationVector":"sXj/GwW3VyOi6izOZyj6VW.7","action":"GetUpdates Response", "result":"Success", "context":Received 250 update(s). cV=sXj/GwW3VyOi6izOZyj6VW.0;server=akswtt00400000b;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted Some updates remain.}
|
|
||||||
{"logTime": "0805/193111", "correlationVector":"tKVy9coEj1TTUbSWKrdxXv","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=tKVy9coEj1TTUbSWKrdxXv}
|
|
||||||
{"logTime": "0805/193111", "correlationVector":"tKVy9coEj1TTUbSWKrdxXv.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000j"}}
|
|
||||||
{"logTime": "0805/193111", "correlationVector":"tKVy9coEj1TTUbSWKrdxXv.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Preferences", "deleted":"20", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"22", "total":"22"}}
|
|
||||||
{"logTime": "0805/193111", "correlationVector":"tKVy9coEj1TTUbSWKrdxXv.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill Profiles", "deleted":"2", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
|
||||||
{"logTime": "0805/193111", "correlationVector":"tKVy9coEj1TTUbSWKrdxXv.4","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"7", "total":"7"}}
|
|
||||||
{"logTime": "0805/193111", "correlationVector":"tKVy9coEj1TTUbSWKrdxXv.5","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Extensions", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
|
||||||
{"logTime": "0805/193111", "correlationVector":"tKVy9coEj1TTUbSWKrdxXv.6","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Sessions", "deleted":"22", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"58", "total":"58"}}
|
|
||||||
{"logTime": "0805/193111", "correlationVector":"tKVy9coEj1TTUbSWKrdxXv.7","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Edge Hub App Usage", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
|
||||||
{"logTime": "0805/193111", "correlationVector":"tKVy9coEj1TTUbSWKrdxXv.8","action":"GetUpdates Response", "result":"Success", "context":Received 91 update(s). cV=tKVy9coEj1TTUbSWKrdxXv.0;server=akswtt00400000j;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0805/193111", "correlationVector":"5ubkdhdRaueGlx7A5xn463","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=5ubkdhdRaueGlx7A5xn463}
|
|
||||||
{"logTime": "0805/193112", "correlationVector":"5ubkdhdRaueGlx7A5xn463.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000000"}}
|
|
||||||
{"logTime": "0805/193112", "correlationVector":"5ubkdhdRaueGlx7A5xn463.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"History", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"249", "total":"249"}}
|
|
||||||
{"logTime": "0805/193112", "correlationVector":"5ubkdhdRaueGlx7A5xn463.3","action":"GetUpdates Response", "result":"Success", "context":Received 249 update(s). cV=5ubkdhdRaueGlx7A5xn463.0;server=akswtt004000000;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
|
||||||
{"logTime": "0805/193112", "correlationVector":"cXkSg8BEj1qv8DAeg1JZKy","action":"Normal GetUpdate request", "result":"", "context":cV=cXkSg8BEj1qv8DAeg1JZKy
|
|
||||||
Nudged types: Sessions, Device Info
|
|
||||||
Refresh requested types: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys}
|
|
||||||
{"logTime": "0805/193113", "correlationVector":"cXkSg8BEj1qv8DAeg1JZKy.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000j"}}
|
|
||||||
{"logTime": "0805/193113", "correlationVector":"cXkSg8BEj1qv8DAeg1JZKy.2","action":"GetUpdates Response", "result":"Success", "context":Received 0 update(s). cV=cXkSg8BEj1qv8DAeg1JZKy.0;server=akswtt00400000j;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
{"logTime": "0805/193113", "correlationVector":"cXkSg8BEj1qv8DAeg1JZKy.2","action":"GetUpdates Response", "result":"Success", "context":Received 0 update(s). cV=cXkSg8BEj1qv8DAeg1JZKy.0;server=akswtt00400000j;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
{"logTime": "0805/193113", "correlationVector":"Fu1BbaNBjbuY5rIesn2X5/","action":"Commit Request", "result":"", "context":Item count: 3
|
{"logTime": "0805/193113", "correlationVector":"Fu1BbaNBjbuY5rIesn2X5/","action":"Commit Request", "result":"", "context":Item count: 3
|
||||||
Contributing types: Sessions, Device Info}
|
Contributing types: Sessions, Device Info}
|
||||||
@@ -366,3 +69,266 @@ Contributing types: Sessions, History}
|
|||||||
Contributing types: Device Info}
|
Contributing types: Device Info}
|
||||||
{"logTime": "0805/205304", "correlationVector":"CZHAw89qe/V0w2ci8E9yxr.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000005"}}
|
{"logTime": "0805/205304", "correlationVector":"CZHAw89qe/V0w2ci8E9yxr.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000005"}}
|
||||||
{"logTime": "0805/205304", "correlationVector":"CZHAw89qe/V0w2ci8E9yxr.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=CZHAw89qe/V0w2ci8E9yxr.0;server=akswtt004000005;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
{"logTime": "0805/205304", "correlationVector":"CZHAw89qe/V0w2ci8E9yxr.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=CZHAw89qe/V0w2ci8E9yxr.0;server=akswtt004000005;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/212013", "correlationVector":"+/Kxw72vUt5rxqcSuEiHGd.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt103000019"}}
|
||||||
|
{"logTime": "0809/212013", "correlationVector":"+/Kxw72vUt5rxqcSuEiHGd.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Encryption Keys", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
||||||
|
{"logTime": "0809/212013", "correlationVector":"dswZhshKMiRdMqU52d92vM","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"", "migrationStage":"", "server":""}}
|
||||||
|
{"logTime": "0809/212013", "correlationVector":"dswZhshKMiRdMqU52d92vM.0","action":"EncryptionKeysFetcher.DownloadKeys:", "result":"Success", "context":Key count: 10, Last key timestamp: 2026-07-17T21:16:54Z}
|
||||||
|
{"logTime": "0809/212013", "correlationVector":"dswZhshKMiRdMqU52d92vM.1","action":"EncryptionKeysManager::SetEncryptionKeys:", "result":"Success", "context":Key names[10]:[wimgRheq8lOIGfRV4WVcoKimTc/AOq0F+9IwiHp174I5F8axIfO8QCCbjE+9fg1EfqcrdO7m/RW7IuoOLPy6tw==][GdjhGEUfutVDRCUJOikLMkXGcpLd7Uw/1EcmxDQyl/czleXfAbh5HqA0PJRRCznjHzo3toviT7z0JXnA+liXQA==][FyZbP02mdYiJPYKaLVgtmzm6/U83YVKhhqAPS/pTdA4vq7nBrRDI5Jj2dVTByT16R08AkHEVlQHt44fUsFNgug==][YUky7ZK7bd2iWVL7pAvQz7q9P46FaQcoUWpMR1MebQzUvV6HzzY72Uag3T+UDYqQR0ewoBpnVMlAkMpMQZkRHA==][M7X+8hkU1gOr+gt7kESNKrIOQltK7LmM62a/ustC7uHDi5DJZw3djmlzb1VYjx4cZz0ptD/8/fRrQGXwyqdACg==][UECYbawrS/Luzn7cJ88XfKmR+Y5+aSB4P+DY/pbpVzcy0m33QhplS/SidutoXTKC8l/lwsL0tk8bKQDFN6ME5w==][XtlvKPhWPhaxb7J2Nb5w3uMEAu0mvD95RTWTbWb2R7WCJyftcYw6RjvDBhh3rWH7ejepTKMUwN88wsrFXHniqQ==][acPLEjd0BJ/kkL7u0BN30342USMSyJRqddIaZ/Q7F1XyWnkYvzOOFx7cDX/HMxXB/Ec0ojbxV5mVC8Vpb6Hg4w==][CsVCzdBgQ8vnG0XM1FiBJMDfLsF0BLwBbQmnXEgeolbMa15kFSj5pYQN1tvWrrfZA3UFzlpVCsM3pV4DQZzowQ==][Z8gs04R9mP5dM2DtFaTkwSDUYR23ghtyhSkUzNUhotvEHI1q2GS1N6uJRoTzMS+GBwpIqXq8Ovgslujv+2Nt6A==]}
|
||||||
|
{"logTime": "0809/212013", "correlationVector":"dswZhshKMiRdMqU52d92vM.2","action":"EncryptionKeysManager::SetEncryptionKeysWithTimestamps:", "result":"Success", "context":Key timestamps[10]:[2023-08-01T10:16:36Z][2023-09-05T18:01:02Z][2024-03-08T21:41:33Z][2024-04-12T06:14:40Z][2024-05-01T06:42:59Z][2024-10-31T20:02:53Z][2025-05-02T20:50:04Z][2025-06-11T10:46:10Z][2025-12-20T17:43:42Z][2026-07-17T21:16:54Z]}
|
||||||
|
{"logTime": "0809/212013", "correlationVector":"+/Kxw72vUt5rxqcSuEiHGd","action":"Initial GetUpdates", "result":"", "context":Reason: NEW_CLIENT. cV=+/Kxw72vUt5rxqcSuEiHGd}
|
||||||
|
{"logTime": "0809/212013", "correlationVector":"+/Kxw72vUt5rxqcSuEiHGd.3","action":"GetUpdates Response", "result":"Success", "context":Received 1 update(s). cV=+/Kxw72vUt5rxqcSuEiHGd.0;server=akswtt103000019;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/212013", "correlationVector":"aECgUHctDmu9uso/jCAgf0","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=aECgUHctDmu9uso/jCAgf0}
|
||||||
|
{"logTime": "0809/212014", "correlationVector":"aECgUHctDmu9uso/jCAgf0.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt103000015"}}
|
||||||
|
{"logTime": "0809/212014", "correlationVector":"aECgUHctDmu9uso/jCAgf0.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Passwords", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"104", "total":"104"}}
|
||||||
|
{"logTime": "0809/212014", "correlationVector":"aECgUHctDmu9uso/jCAgf0.3","action":"GetUpdates Response", "result":"Success", "context":Received 104 update(s). cV=aECgUHctDmu9uso/jCAgf0.0;server=akswtt103000015;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/212014", "correlationVector":"ooVO6KYvLznMNzDdbr294o","action":"Normal GetUpdate request", "result":"", "context":cV=ooVO6KYvLznMNzDdbr294o
|
||||||
|
Nudged types: Sessions, Device Info, History
|
||||||
|
Refresh requested types: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys}
|
||||||
|
{"logTime": "0809/212014", "correlationVector":"ooVO6KYvLznMNzDdbr294o.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt103000019"}}
|
||||||
|
{"logTime": "0809/212014", "correlationVector":"ooVO6KYvLznMNzDdbr294o.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Preferences", "deleted":"4", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"8", "total":"8"}}
|
||||||
|
{"logTime": "0809/212014", "correlationVector":"ooVO6KYvLznMNzDdbr294o.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Sessions", "deleted":"16", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"21", "total":"21"}}
|
||||||
|
{"logTime": "0809/212014", "correlationVector":"ooVO6KYvLznMNzDdbr294o.4","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Device Info", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
||||||
|
{"logTime": "0809/212014", "correlationVector":"ooVO6KYvLznMNzDdbr294o.5","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"History", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"28", "total":"28"}}
|
||||||
|
{"logTime": "0809/212014", "correlationVector":"ooVO6KYvLznMNzDdbr294o.6","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Edge Hub App Usage", "deleted":"1", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
||||||
|
{"logTime": "0809/212014", "correlationVector":"ooVO6KYvLznMNzDdbr294o.7","action":"GetUpdates Response", "result":"Success", "context":Received 60 update(s). cV=ooVO6KYvLznMNzDdbr294o.0;server=akswtt103000019;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/212014", "correlationVector":"skQ9ENw4zCTnVlr9kjdeRU","action":"Poll GetUpdate request", "result":"", "context":cV=skQ9ENw4zCTnVlr9kjdeRU}
|
||||||
|
{"logTime": "0809/212015", "correlationVector":"skQ9ENw4zCTnVlr9kjdeRU.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt10300000t"}}
|
||||||
|
{"logTime": "0809/212015", "correlationVector":"skQ9ENw4zCTnVlr9kjdeRU.2","action":"GetUpdates Response", "result":"Success", "context":Received 0 update(s). cV=skQ9ENw4zCTnVlr9kjdeRU.0;server=akswtt10300000t;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/212050", "correlationVector":"pw7EyjflIWIV0nWcrJ/+py","action":"Commit Request", "result":"", "context":Item count: 5
|
||||||
|
Contributing types: Sessions, Device Info, History}
|
||||||
|
{"logTime": "0809/212051", "correlationVector":"pw7EyjflIWIV0nWcrJ/+py.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt103000003"}}
|
||||||
|
{"logTime": "0809/212051", "correlationVector":"pw7EyjflIWIV0nWcrJ/+py.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=pw7EyjflIWIV0nWcrJ/+py.0;server=akswtt103000003;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/212053", "correlationVector":"4A0WuACstDU7rgJrWOwS/O","action":"Commit Request", "result":"", "context":Item count: 5
|
||||||
|
Contributing types: Preferences, Sessions, Device Info, History}
|
||||||
|
{"logTime": "0809/212054", "correlationVector":"4A0WuACstDU7rgJrWOwS/O.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt103000003"}}
|
||||||
|
{"logTime": "0809/212054", "correlationVector":"4A0WuACstDU7rgJrWOwS/O.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=4A0WuACstDU7rgJrWOwS/O.0;server=akswtt103000003;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/212109", "correlationVector":"t0f+RH6fL8QUcOa4kner58","action":"Commit Request", "result":"", "context":Item count: 1
|
||||||
|
Contributing types: Preferences}
|
||||||
|
{"logTime": "0809/212109", "correlationVector":"t0f+RH6fL8QUcOa4kner58.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt103000016"}}
|
||||||
|
{"logTime": "0809/212109", "correlationVector":"t0f+RH6fL8QUcOa4kner58.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=t0f+RH6fL8QUcOa4kner58.0;server=akswtt103000016;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/212111", "correlationVector":"uok/Tl8+ZE7GBXMrIRPp6C","action":"Commit Request", "result":"", "context":Item count: 1
|
||||||
|
Contributing types: Device Info}
|
||||||
|
{"logTime": "0809/212112", "correlationVector":"uok/Tl8+ZE7GBXMrIRPp6C.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt103000003"}}
|
||||||
|
{"logTime": "0809/212112", "correlationVector":"uok/Tl8+ZE7GBXMrIRPp6C.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=uok/Tl8+ZE7GBXMrIRPp6C.0;server=akswtt103000003;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/212217", "correlationVector":"OrxBaHg2HsCbJjtQfrRIS/","action":"Commit Request", "result":"", "context":Item count: 4
|
||||||
|
Contributing types: Sessions, History}
|
||||||
|
{"logTime": "0809/212218", "correlationVector":"OrxBaHg2HsCbJjtQfrRIS/.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt103000016"}}
|
||||||
|
{"logTime": "0809/212218", "correlationVector":"OrxBaHg2HsCbJjtQfrRIS/.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=OrxBaHg2HsCbJjtQfrRIS/.0;server=akswtt103000016;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/212218", "correlationVector":"OrxBaHg2HsCbJjtQfrRIS/.3","action":"Commit.Sessions", "result":"Success", "context":{"id":"c48b7ad1-f77e-42c7-9a0b-06a371adb50e", "isDeleted":"true", "size":"0", "version":"1786310455610"}}
|
||||||
|
{"logTime": "0809/212256", "correlationVector":"8aB9TRa2243ZlKYLkkMQAs","action":"Commit Request", "result":"", "context":Item count: 1
|
||||||
|
Contributing types: Device Info}
|
||||||
|
{"logTime": "0809/212256", "correlationVector":"8aB9TRa2243ZlKYLkkMQAs.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt103000003"}}
|
||||||
|
{"logTime": "0809/212256", "correlationVector":"8aB9TRa2243ZlKYLkkMQAs.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=8aB9TRa2243ZlKYLkkMQAs.0;server=akswtt103000003;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/212258", "correlationVector":"VhzOPwWvx92v0aLK/O/6lV","action":"Commit Request", "result":"", "context":Item count: 1
|
||||||
|
Contributing types: Preferences}
|
||||||
|
{"logTime": "0809/212259", "correlationVector":"VhzOPwWvx92v0aLK/O/6lV.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt103000003"}}
|
||||||
|
{"logTime": "0809/212259", "correlationVector":"VhzOPwWvx92v0aLK/O/6lV.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=VhzOPwWvx92v0aLK/O/6lV.0;server=akswtt103000003;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/212301", "correlationVector":"FFnACB/5u4Ja2jXhYX6bON","action":"Commit Request", "result":"", "context":Item count: 4
|
||||||
|
Contributing types: Preferences, Sessions, History}
|
||||||
|
{"logTime": "0809/212302", "correlationVector":"FFnACB/5u4Ja2jXhYX6bON.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt10300000k"}}
|
||||||
|
{"logTime": "0809/212302", "correlationVector":"FFnACB/5u4Ja2jXhYX6bON.3","action":"Commit.Preferences", "result":"Success", "context":{"id":"3ce13086-d2ad-4c3c-9c0e-1ab67704cc83", "isDeleted":"true", "size":"0", "version":"1786310470968"}}
|
||||||
|
{"logTime": "0809/212302", "correlationVector":"FFnACB/5u4Ja2jXhYX6bON.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=FFnACB/5u4Ja2jXhYX6bON.0;server=akswtt10300000k;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/212345", "correlationVector":"Nb5Jb/UX1UErYj+i/bKS6i","action":"Commit Request", "result":"", "context":Item count: 2
|
||||||
|
Contributing types: Preferences, Device Info}
|
||||||
|
{"logTime": "0809/212346", "correlationVector":"Nb5Jb/UX1UErYj+i/bKS6i.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt10300000t"}}
|
||||||
|
{"logTime": "0809/212346", "correlationVector":"Nb5Jb/UX1UErYj+i/bKS6i.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=Nb5Jb/UX1UErYj+i/bKS6i.0;server=akswtt10300000t;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/212501", "correlationVector":"ZJhrCtnoSOg3o5oWw0kQHA","action":"Commit Request", "result":"", "context":Item count: 4
|
||||||
|
Contributing types: Sessions, History}
|
||||||
|
{"logTime": "0809/212502", "correlationVector":"ZJhrCtnoSOg3o5oWw0kQHA.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt10300000l"}}
|
||||||
|
{"logTime": "0809/212502", "correlationVector":"ZJhrCtnoSOg3o5oWw0kQHA.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=ZJhrCtnoSOg3o5oWw0kQHA.0;server=akswtt10300000l;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/212502", "correlationVector":"ZJhrCtnoSOg3o5oWw0kQHA.3","action":"Commit.Sessions", "result":"Success", "context":{"id":"b65b333f-fc69-4469-b36d-d7aaadeac3fa", "isDeleted":"true", "size":"0", "version":"1786310583491"}}
|
||||||
|
{"logTime": "0809/212616", "correlationVector":"doG0uoiTb5IGjOEA9snT+x","action":"Commit Request", "result":"", "context":Item count: 4
|
||||||
|
Contributing types: Sessions, History}
|
||||||
|
{"logTime": "0809/212617", "correlationVector":"doG0uoiTb5IGjOEA9snT+x.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt10300001r"}}
|
||||||
|
{"logTime": "0809/212617", "correlationVector":"doG0uoiTb5IGjOEA9snT+x.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=doG0uoiTb5IGjOEA9snT+x.0;server=akswtt10300001r;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/212831", "correlationVector":"KfhuVmncmmP+uXsPITh36i","action":"Commit Request", "result":"", "context":Item count: 1
|
||||||
|
Contributing types: Sessions}
|
||||||
|
{"logTime": "0809/212831", "correlationVector":"KfhuVmncmmP+uXsPITh36i.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000q"}}
|
||||||
|
{"logTime": "0809/212831", "correlationVector":"KfhuVmncmmP+uXsPITh36i.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=KfhuVmncmmP+uXsPITh36i.0;server=akswtt00400000q;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/212946", "correlationVector":"8lY7KenouC0dw5c47aFpwN","action":"Commit Request", "result":"", "context":Item count: 3
|
||||||
|
Contributing types: Sessions, History}
|
||||||
|
{"logTime": "0809/212947", "correlationVector":"8lY7KenouC0dw5c47aFpwN.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000008"}}
|
||||||
|
{"logTime": "0809/212947", "correlationVector":"8lY7KenouC0dw5c47aFpwN.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=8lY7KenouC0dw5c47aFpwN.0;server=akswtt004000008;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/213240", "correlationVector":"Dqiz9BYBsclpAVrQ753obd","action":"Commit Request", "result":"", "context":Item count: 3
|
||||||
|
Contributing types: Sessions, History}
|
||||||
|
{"logTime": "0809/213241", "correlationVector":"Dqiz9BYBsclpAVrQ753obd.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000o"}}
|
||||||
|
{"logTime": "0809/213241", "correlationVector":"Dqiz9BYBsclpAVrQ753obd.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=Dqiz9BYBsclpAVrQ753obd.0;server=akswtt00400000o;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/213404", "correlationVector":"CN9hHyTKrRhesvuAl9HBhE","action":"Commit Request", "result":"", "context":Item count: 3
|
||||||
|
Contributing types: Sessions, History}
|
||||||
|
{"logTime": "0809/213405", "correlationVector":"CN9hHyTKrRhesvuAl9HBhE.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400001b"}}
|
||||||
|
{"logTime": "0809/213405", "correlationVector":"CN9hHyTKrRhesvuAl9HBhE.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=CN9hHyTKrRhesvuAl9HBhE.0;server=akswtt00400001b;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0809/213519", "correlationVector":"f17tGDlAJjSydbkMhTRkej","action":"Commit Request", "result":"", "context":Item count: 1
|
||||||
|
Contributing types: Sessions}
|
||||||
|
{"logTime": "0809/213519", "correlationVector":"f17tGDlAJjSydbkMhTRkej.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000q"}}
|
||||||
|
{"logTime": "0809/213519", "correlationVector":"f17tGDlAJjSydbkMhTRkej.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=f17tGDlAJjSydbkMhTRkej.0;server=akswtt00400000q;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/203851", "correlationVector":"CToxOtCMG/BZ7QAHpqH4Cc.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000004"}}
|
||||||
|
{"logTime": "0810/203851", "correlationVector":"CToxOtCMG/BZ7QAHpqH4Cc.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Encryption Keys", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
||||||
|
{"logTime": "0810/203851", "correlationVector":"dsEgZ1fLcWSyDx6P45mMA5","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"", "migrationStage":"", "server":""}}
|
||||||
|
{"logTime": "0810/203851", "correlationVector":"dsEgZ1fLcWSyDx6P45mMA5.0","action":"EncryptionKeysFetcher.DownloadKeys:", "result":"Success", "context":Key count: 10, Last key timestamp: 2026-07-17T21:16:54Z}
|
||||||
|
{"logTime": "0810/203851", "correlationVector":"dsEgZ1fLcWSyDx6P45mMA5.1","action":"EncryptionKeysManager::SetEncryptionKeys:", "result":"Success", "context":Key names[10]:[wimgRheq8lOIGfRV4WVcoKimTc/AOq0F+9IwiHp174I5F8axIfO8QCCbjE+9fg1EfqcrdO7m/RW7IuoOLPy6tw==][GdjhGEUfutVDRCUJOikLMkXGcpLd7Uw/1EcmxDQyl/czleXfAbh5HqA0PJRRCznjHzo3toviT7z0JXnA+liXQA==][FyZbP02mdYiJPYKaLVgtmzm6/U83YVKhhqAPS/pTdA4vq7nBrRDI5Jj2dVTByT16R08AkHEVlQHt44fUsFNgug==][YUky7ZK7bd2iWVL7pAvQz7q9P46FaQcoUWpMR1MebQzUvV6HzzY72Uag3T+UDYqQR0ewoBpnVMlAkMpMQZkRHA==][M7X+8hkU1gOr+gt7kESNKrIOQltK7LmM62a/ustC7uHDi5DJZw3djmlzb1VYjx4cZz0ptD/8/fRrQGXwyqdACg==][UECYbawrS/Luzn7cJ88XfKmR+Y5+aSB4P+DY/pbpVzcy0m33QhplS/SidutoXTKC8l/lwsL0tk8bKQDFN6ME5w==][XtlvKPhWPhaxb7J2Nb5w3uMEAu0mvD95RTWTbWb2R7WCJyftcYw6RjvDBhh3rWH7ejepTKMUwN88wsrFXHniqQ==][acPLEjd0BJ/kkL7u0BN30342USMSyJRqddIaZ/Q7F1XyWnkYvzOOFx7cDX/HMxXB/Ec0ojbxV5mVC8Vpb6Hg4w==][CsVCzdBgQ8vnG0XM1FiBJMDfLsF0BLwBbQmnXEgeolbMa15kFSj5pYQN1tvWrrfZA3UFzlpVCsM3pV4DQZzowQ==][Z8gs04R9mP5dM2DtFaTkwSDUYR23ghtyhSkUzNUhotvEHI1q2GS1N6uJRoTzMS+GBwpIqXq8Ovgslujv+2Nt6A==]}
|
||||||
|
{"logTime": "0810/203851", "correlationVector":"dsEgZ1fLcWSyDx6P45mMA5.2","action":"EncryptionKeysManager::SetEncryptionKeysWithTimestamps:", "result":"Success", "context":Key timestamps[10]:[2023-08-01T10:16:36Z][2023-09-05T18:01:02Z][2024-03-08T21:41:33Z][2024-04-12T06:14:40Z][2024-05-01T06:42:59Z][2024-10-31T20:02:53Z][2025-05-02T20:50:04Z][2025-06-11T10:46:10Z][2025-12-20T17:43:42Z][2026-07-17T21:16:54Z]}
|
||||||
|
{"logTime": "0810/203851", "correlationVector":"CToxOtCMG/BZ7QAHpqH4Cc","action":"Initial GetUpdates", "result":"", "context":Reason: NEW_CLIENT. cV=CToxOtCMG/BZ7QAHpqH4Cc}
|
||||||
|
{"logTime": "0810/203851", "correlationVector":"CToxOtCMG/BZ7QAHpqH4Cc.3","action":"GetUpdates Response", "result":"Success", "context":Received 1 update(s). cV=CToxOtCMG/BZ7QAHpqH4Cc.0;server=akswtt004000004;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/203851", "correlationVector":"1L2Un0tLe62YqIS9ggPkN+","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=1L2Un0tLe62YqIS9ggPkN+}
|
||||||
|
{"logTime": "0810/203852", "correlationVector":"1L2Un0tLe62YqIS9ggPkN+.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000i"}}
|
||||||
|
{"logTime": "0810/203852", "correlationVector":"1L2Un0tLe62YqIS9ggPkN+.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Passwords", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"104", "total":"104"}}
|
||||||
|
{"logTime": "0810/203852", "correlationVector":"1L2Un0tLe62YqIS9ggPkN+.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Device Info", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"32", "total":"32"}}
|
||||||
|
{"logTime": "0810/203852", "correlationVector":"1L2Un0tLe62YqIS9ggPkN+.4","action":"GetUpdates Response", "result":"Success", "context":Received 136 update(s). cV=1L2Un0tLe62YqIS9ggPkN+.0;server=akswtt00400000i;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/203852", "correlationVector":"fXHVavnHpQzswQGhXSv+uv","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=fXHVavnHpQzswQGhXSv+uv}
|
||||||
|
{"logTime": "0810/203855", "correlationVector":"fXHVavnHpQzswQGhXSv+uv.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000004"}}
|
||||||
|
{"logTime": "0810/203855", "correlationVector":"fXHVavnHpQzswQGhXSv+uv.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Bookmarks", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"25", "total":"25"}}
|
||||||
|
{"logTime": "0810/203855", "correlationVector":"fXHVavnHpQzswQGhXSv+uv.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Preferences", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"86", "total":"86"}}
|
||||||
|
{"logTime": "0810/203855", "correlationVector":"fXHVavnHpQzswQGhXSv+uv.4","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"75", "total":"75"}}
|
||||||
|
{"logTime": "0810/203855", "correlationVector":"fXHVavnHpQzswQGhXSv+uv.5","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Extensions", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"3", "total":"3"}}
|
||||||
|
{"logTime": "0810/203855", "correlationVector":"fXHVavnHpQzswQGhXSv+uv.6","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Extension settings", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"57", "total":"57"}}
|
||||||
|
{"logTime": "0810/203855", "correlationVector":"fXHVavnHpQzswQGhXSv+uv.7","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Web Apps", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"4", "total":"4"}}
|
||||||
|
{"logTime": "0810/203855", "correlationVector":"fXHVavnHpQzswQGhXSv+uv.8","action":"GetUpdates Response", "result":"Success", "context":Received 250 update(s). cV=fXHVavnHpQzswQGhXSv+uv.0;server=akswtt004000004;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted Some updates remain.}
|
||||||
|
{"logTime": "0810/203855", "correlationVector":"k7RUtLdGg5Ij5XFR15Sn3h","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=k7RUtLdGg5Ij5XFR15Sn3h}
|
||||||
|
{"logTime": "0810/203856", "correlationVector":"k7RUtLdGg5Ij5XFR15Sn3h.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000o"}}
|
||||||
|
{"logTime": "0810/203856", "correlationVector":"k7RUtLdGg5Ij5XFR15Sn3h.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"250", "total":"250"}}
|
||||||
|
{"logTime": "0810/203856", "correlationVector":"k7RUtLdGg5Ij5XFR15Sn3h.3","action":"GetUpdates Response", "result":"Success", "context":Received 250 update(s). cV=k7RUtLdGg5Ij5XFR15Sn3h.0;server=akswtt00400000o;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted Some updates remain.}
|
||||||
|
{"logTime": "0810/203856", "correlationVector":"cc+hPbEB78sGWfjjTTxrGa","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=cc+hPbEB78sGWfjjTTxrGa}
|
||||||
|
{"logTime": "0810/203857", "correlationVector":"cc+hPbEB78sGWfjjTTxrGa.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000009"}}
|
||||||
|
{"logTime": "0810/203857", "correlationVector":"cc+hPbEB78sGWfjjTTxrGa.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"250", "total":"250"}}
|
||||||
|
{"logTime": "0810/203857", "correlationVector":"cc+hPbEB78sGWfjjTTxrGa.3","action":"GetUpdates Response", "result":"Success", "context":Received 250 update(s). cV=cc+hPbEB78sGWfjjTTxrGa.0;server=akswtt004000009;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted Some updates remain.}
|
||||||
|
{"logTime": "0810/203857", "correlationVector":"vPYT5TTJw5217flSvveNAM","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=vPYT5TTJw5217flSvveNAM}
|
||||||
|
{"logTime": "0810/203859", "correlationVector":"vPYT5TTJw5217flSvveNAM.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000o"}}
|
||||||
|
{"logTime": "0810/203859", "correlationVector":"vPYT5TTJw5217flSvveNAM.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Bookmarks", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
||||||
|
{"logTime": "0810/203859", "correlationVector":"vPYT5TTJw5217flSvveNAM.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Preferences", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"13", "total":"13"}}
|
||||||
|
{"logTime": "0810/203859", "correlationVector":"vPYT5TTJw5217flSvveNAM.4","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill Profiles", "deleted":"9", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"15", "total":"15"}}
|
||||||
|
{"logTime": "0810/203859", "correlationVector":"vPYT5TTJw5217flSvveNAM.5","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"218", "total":"218"}}
|
||||||
|
{"logTime": "0810/203859", "correlationVector":"vPYT5TTJw5217flSvveNAM.6","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Extensions", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
||||||
|
{"logTime": "0810/203859", "correlationVector":"vPYT5TTJw5217flSvveNAM.7","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Edge Hub App Usage", "deleted":"1", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
||||||
|
{"logTime": "0810/203859", "correlationVector":"vPYT5TTJw5217flSvveNAM.8","action":"GetUpdates Response", "result":"Success", "context":Received 250 update(s). cV=vPYT5TTJw5217flSvveNAM.0;server=akswtt00400000o;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted Some updates remain.}
|
||||||
|
{"logTime": "0810/203859", "correlationVector":"VnTQUn5OERucd3Pgmauaf7","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=VnTQUn5OERucd3Pgmauaf7}
|
||||||
|
{"logTime": "0810/203859", "correlationVector":"VnTQUn5OERucd3Pgmauaf7.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000004"}}
|
||||||
|
{"logTime": "0810/203859", "correlationVector":"VnTQUn5OERucd3Pgmauaf7.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill Profiles", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
||||||
|
{"logTime": "0810/203859", "correlationVector":"VnTQUn5OERucd3Pgmauaf7.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"242", "total":"242"}}
|
||||||
|
{"logTime": "0810/203859", "correlationVector":"VnTQUn5OERucd3Pgmauaf7.4","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Extensions", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"3", "total":"3"}}
|
||||||
|
{"logTime": "0810/203859", "correlationVector":"VnTQUn5OERucd3Pgmauaf7.5","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Sessions", "deleted":"2", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
||||||
|
{"logTime": "0810/203859", "correlationVector":"VnTQUn5OERucd3Pgmauaf7.6","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Edge Hub App Usage", "deleted":"1", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
||||||
|
{"logTime": "0810/203859", "correlationVector":"VnTQUn5OERucd3Pgmauaf7.7","action":"GetUpdates Response", "result":"Success", "context":Received 250 update(s). cV=VnTQUn5OERucd3Pgmauaf7.0;server=akswtt004000004;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted Some updates remain.}
|
||||||
|
{"logTime": "0810/203859", "correlationVector":"SjoJoumNrGpDVM0jnqrWJY","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=SjoJoumNrGpDVM0jnqrWJY}
|
||||||
|
{"logTime": "0810/203900", "correlationVector":"SjoJoumNrGpDVM0jnqrWJY.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000009"}}
|
||||||
|
{"logTime": "0810/203900", "correlationVector":"SjoJoumNrGpDVM0jnqrWJY.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Preferences", "deleted":"26", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"31", "total":"31"}}
|
||||||
|
{"logTime": "0810/203900", "correlationVector":"SjoJoumNrGpDVM0jnqrWJY.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill Profiles", "deleted":"2", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
||||||
|
{"logTime": "0810/203900", "correlationVector":"SjoJoumNrGpDVM0jnqrWJY.4","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Autofill", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"6", "total":"6"}}
|
||||||
|
{"logTime": "0810/203900", "correlationVector":"SjoJoumNrGpDVM0jnqrWJY.5","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Extensions", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
||||||
|
{"logTime": "0810/203900", "correlationVector":"SjoJoumNrGpDVM0jnqrWJY.6","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Sessions", "deleted":"42", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"65", "total":"65"}}
|
||||||
|
{"logTime": "0810/203900", "correlationVector":"SjoJoumNrGpDVM0jnqrWJY.7","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Edge Hub App Usage", "deleted":"1", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
||||||
|
{"logTime": "0810/203900", "correlationVector":"SjoJoumNrGpDVM0jnqrWJY.8","action":"GetUpdates Response", "result":"Success", "context":Received 107 update(s). cV=SjoJoumNrGpDVM0jnqrWJY.0;server=akswtt004000009;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/203900", "correlationVector":"mmdy/vd2o0207y+txVlrSn","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=mmdy/vd2o0207y+txVlrSn}
|
||||||
|
{"logTime": "0810/203901", "correlationVector":"mmdy/vd2o0207y+txVlrSn.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000o"}}
|
||||||
|
{"logTime": "0810/203901", "correlationVector":"mmdy/vd2o0207y+txVlrSn.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"History", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"250", "total":"250"}}
|
||||||
|
{"logTime": "0810/203901", "correlationVector":"mmdy/vd2o0207y+txVlrSn.3","action":"GetUpdates Response", "result":"Success", "context":Received 250 update(s). cV=mmdy/vd2o0207y+txVlrSn.0;server=akswtt00400000o;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted Some updates remain.}
|
||||||
|
{"logTime": "0810/203901", "correlationVector":"jqSGrnrhtvRQ+PMeEIULIy","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=jqSGrnrhtvRQ+PMeEIULIy}
|
||||||
|
{"logTime": "0810/203901", "correlationVector":"jqSGrnrhtvRQ+PMeEIULIy.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000j"}}
|
||||||
|
{"logTime": "0810/203901", "correlationVector":"jqSGrnrhtvRQ+PMeEIULIy.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"History", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"61", "total":"61"}}
|
||||||
|
{"logTime": "0810/203901", "correlationVector":"jqSGrnrhtvRQ+PMeEIULIy.3","action":"GetUpdates Response", "result":"Success", "context":Received 61 update(s). cV=jqSGrnrhtvRQ+PMeEIULIy.0;server=akswtt00400000j;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/203901", "correlationVector":"UBkjNRxR4SheXDeXwbLRXb","action":"Normal GetUpdate request", "result":"", "context":cV=UBkjNRxR4SheXDeXwbLRXb
|
||||||
|
Nudged types: Sessions, Device Info
|
||||||
|
Refresh requested types: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys}
|
||||||
|
{"logTime": "0810/203902", "correlationVector":"UBkjNRxR4SheXDeXwbLRXb.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000000"}}
|
||||||
|
{"logTime": "0810/203902", "correlationVector":"UBkjNRxR4SheXDeXwbLRXb.2","action":"GetUpdates Response", "result":"Success", "context":Received 0 update(s). cV=UBkjNRxR4SheXDeXwbLRXb.0;server=akswtt004000000;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/203902", "correlationVector":"o/yshSC3ro8LEAXzh+eYln","action":"Commit Request", "result":"", "context":Item count: 3
|
||||||
|
Contributing types: Sessions, Device Info}
|
||||||
|
{"logTime": "0810/203903", "correlationVector":"o/yshSC3ro8LEAXzh+eYln.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000009"}}
|
||||||
|
{"logTime": "0810/203903", "correlationVector":"o/yshSC3ro8LEAXzh+eYln.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=o/yshSC3ro8LEAXzh+eYln.0;server=akswtt004000009;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/203903", "correlationVector":"ciMjB+eMm7kXH5yvV3YJ0H","action":"Poll GetUpdate request", "result":"", "context":cV=ciMjB+eMm7kXH5yvV3YJ0H}
|
||||||
|
{"logTime": "0810/203903", "correlationVector":"ciMjB+eMm7kXH5yvV3YJ0H.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000j"}}
|
||||||
|
{"logTime": "0810/203903", "correlationVector":"ciMjB+eMm7kXH5yvV3YJ0H.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Sessions", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"2", "total":"2"}}
|
||||||
|
{"logTime": "0810/203903", "correlationVector":"ciMjB+eMm7kXH5yvV3YJ0H.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Device Info", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
||||||
|
{"logTime": "0810/203903", "correlationVector":"ciMjB+eMm7kXH5yvV3YJ0H.4","action":"GetUpdates Response", "result":"Success", "context":Received 3 update(s). cV=ciMjB+eMm7kXH5yvV3YJ0H.0;server=akswtt00400000j;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/203950", "correlationVector":"bg9/6RPVFaiQ/CGlOSxuw7","action":"Commit Request", "result":"", "context":Item count: 1
|
||||||
|
Contributing types: Preferences}
|
||||||
|
{"logTime": "0810/203950", "correlationVector":"bg9/6RPVFaiQ/CGlOSxuw7.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000j"}}
|
||||||
|
{"logTime": "0810/203950", "correlationVector":"bg9/6RPVFaiQ/CGlOSxuw7.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=bg9/6RPVFaiQ/CGlOSxuw7.0;server=akswtt00400000j;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/204350", "correlationVector":"Sexl9B3mXUeUz/YLd75wDu","action":"Commit Request", "result":"", "context":Item count: 2
|
||||||
|
Contributing types: Preferences, Sessions}
|
||||||
|
{"logTime": "0810/204350", "correlationVector":"Sexl9B3mXUeUz/YLd75wDu.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400001b"}}
|
||||||
|
{"logTime": "0810/204350", "correlationVector":"Sexl9B3mXUeUz/YLd75wDu.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=Sexl9B3mXUeUz/YLd75wDu.0;server=akswtt00400001b;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/204350", "correlationVector":"Sexl9B3mXUeUz/YLd75wDu.3","action":"Commit.Preferences", "result":"Success", "context":{"id":"cf72592b-0f57-42c2-a5ac-c39972f7fea5", "isDeleted":"true", "size":"0", "version":"1786394390512"}}
|
||||||
|
{"logTime": "0810/204500", "correlationVector":"jPl5SSgMV3AJB8X2RvLPVG","action":"Commit Request", "result":"", "context":Item count: 3
|
||||||
|
Contributing types: Sessions, History}
|
||||||
|
{"logTime": "0810/204501", "correlationVector":"jPl5SSgMV3AJB8X2RvLPVG.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000b"}}
|
||||||
|
{"logTime": "0810/204501", "correlationVector":"jPl5SSgMV3AJB8X2RvLPVG.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=jPl5SSgMV3AJB8X2RvLPVG.0;server=akswtt00400000b;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/204717", "correlationVector":"XInqbRbWu6RSRyhw6DQUaJ","action":"Commit Request", "result":"", "context":Item count: 4
|
||||||
|
Contributing types: Preferences, Sessions, History}
|
||||||
|
{"logTime": "0810/204719", "correlationVector":"XInqbRbWu6RSRyhw6DQUaJ.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000f"}}
|
||||||
|
{"logTime": "0810/204719", "correlationVector":"XInqbRbWu6RSRyhw6DQUaJ.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=XInqbRbWu6RSRyhw6DQUaJ.0;server=akswtt00400000f;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/210228", "correlationVector":"ZGnWUAO/srlQFXgg2PkXOo","action":"Commit Request", "result":"", "context":Item count: 1
|
||||||
|
Contributing types: Sessions}
|
||||||
|
{"logTime": "0810/210229", "correlationVector":"ZGnWUAO/srlQFXgg2PkXOo.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000d"}}
|
||||||
|
{"logTime": "0810/210229", "correlationVector":"ZGnWUAO/srlQFXgg2PkXOo.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=ZGnWUAO/srlQFXgg2PkXOo.0;server=akswtt00400000d;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/210718", "correlationVector":"vURo0LQigUNk9061JpRXR4","action":"Commit Request", "result":"", "context":Item count: 3
|
||||||
|
Contributing types: Sessions, History}
|
||||||
|
{"logTime": "0810/210719", "correlationVector":"vURo0LQigUNk9061JpRXR4.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000m"}}
|
||||||
|
{"logTime": "0810/210719", "correlationVector":"vURo0LQigUNk9061JpRXR4.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=vURo0LQigUNk9061JpRXR4.0;server=akswtt00400000m;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/211010", "correlationVector":"pVjEfT0zMGiDW8OsN5Km//","action":"Commit Request", "result":"", "context":Item count: 3
|
||||||
|
Contributing types: Sessions, History}
|
||||||
|
{"logTime": "0810/211011", "correlationVector":"pVjEfT0zMGiDW8OsN5Km//.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000s"}}
|
||||||
|
{"logTime": "0810/211011", "correlationVector":"pVjEfT0zMGiDW8OsN5Km//.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=pVjEfT0zMGiDW8OsN5Km//.0;server=akswtt00400000s;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/211318", "correlationVector":"1pywv32mGMb4v7JjUKsMSM","action":"Commit Request", "result":"", "context":Item count: 1
|
||||||
|
Contributing types: Sessions}
|
||||||
|
{"logTime": "0810/211319", "correlationVector":"1pywv32mGMb4v7JjUKsMSM.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000d"}}
|
||||||
|
{"logTime": "0810/211319", "correlationVector":"1pywv32mGMb4v7JjUKsMSM.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=1pywv32mGMb4v7JjUKsMSM.0;server=akswtt00400000d;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/211531", "correlationVector":"hiYuqjDUN047LzOsAWqvQ/","action":"Commit Request", "result":"", "context":Item count: 3
|
||||||
|
Contributing types: Sessions, History}
|
||||||
|
{"logTime": "0810/211532", "correlationVector":"hiYuqjDUN047LzOsAWqvQ/.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000003"}}
|
||||||
|
{"logTime": "0810/211532", "correlationVector":"hiYuqjDUN047LzOsAWqvQ/.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=hiYuqjDUN047LzOsAWqvQ/.0;server=akswtt004000003;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/212116", "correlationVector":"CQIBjjDXxSUNacv6MymrY9","action":"Commit Request", "result":"", "context":Item count: 1
|
||||||
|
Contributing types: Device Info}
|
||||||
|
{"logTime": "0810/212117", "correlationVector":"CQIBjjDXxSUNacv6MymrY9.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000g"}}
|
||||||
|
{"logTime": "0810/212117", "correlationVector":"CQIBjjDXxSUNacv6MymrY9.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=CQIBjjDXxSUNacv6MymrY9.0;server=akswtt00400000g;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/212411", "correlationVector":"x+JW3bbdMkOMPBhPyDbBIY","action":"Commit Request", "result":"", "context":Item count: 1
|
||||||
|
Contributing types: Sessions}
|
||||||
|
{"logTime": "0810/212412", "correlationVector":"x+JW3bbdMkOMPBhPyDbBIY.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt10300001r"}}
|
||||||
|
{"logTime": "0810/212412", "correlationVector":"x+JW3bbdMkOMPBhPyDbBIY.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=x+JW3bbdMkOMPBhPyDbBIY.0;server=akswtt10300001r;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/213120", "correlationVector":"9sONruU5QvG9ULNWOYvKIt","action":"Commit Request", "result":"", "context":Item count: 5
|
||||||
|
Contributing types: Sessions, History}
|
||||||
|
{"logTime": "0810/213121", "correlationVector":"9sONruU5QvG9ULNWOYvKIt.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400001b"}}
|
||||||
|
{"logTime": "0810/213121", "correlationVector":"9sONruU5QvG9ULNWOYvKIt.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=9sONruU5QvG9ULNWOYvKIt.0;server=akswtt00400001b;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/213221", "correlationVector":"44gpiFA6eR59aCgav/G21G","action":"Commit Request", "result":"", "context":Item count: 3
|
||||||
|
Contributing types: Sessions, History}
|
||||||
|
{"logTime": "0810/213222", "correlationVector":"44gpiFA6eR59aCgav/G21G.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000009"}}
|
||||||
|
{"logTime": "0810/213222", "correlationVector":"44gpiFA6eR59aCgav/G21G.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=44gpiFA6eR59aCgav/G21G.0;server=akswtt004000009;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/213424", "correlationVector":"pxJZLjuxayC4mWw1/54kFZ","action":"Commit Request", "result":"", "context":Item count: 4
|
||||||
|
Contributing types: Sessions, History}
|
||||||
|
{"logTime": "0810/213425", "correlationVector":"pxJZLjuxayC4mWw1/54kFZ.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt00400000i"}}
|
||||||
|
{"logTime": "0810/213425", "correlationVector":"pxJZLjuxayC4mWw1/54kFZ.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=pxJZLjuxayC4mWw1/54kFZ.0;server=akswtt00400000i;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0810/213532", "correlationVector":"09CvGSoJcyuAZO24p2KvnU","action":"Commit Request", "result":"", "context":Item count: 4
|
||||||
|
Contributing types: Sessions, History}
|
||||||
|
{"logTime": "0810/213533", "correlationVector":"09CvGSoJcyuAZO24p2KvnU.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt004000009"}}
|
||||||
|
{"logTime": "0810/213533", "correlationVector":"09CvGSoJcyuAZO24p2KvnU.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=09CvGSoJcyuAZO24p2KvnU.0;server=akswtt004000009;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-010-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0811/213152", "correlationVector":"3nSvdnkzJZVa9kJ7aXwAbE.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt10300000w"}}
|
||||||
|
{"logTime": "0811/213152", "correlationVector":"3nSvdnkzJZVa9kJ7aXwAbE.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Encryption Keys", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
||||||
|
{"logTime": "0811/213152", "correlationVector":"gnK0MxNgyXbNWPs59tp1Gv","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"", "migrationStage":"", "server":""}}
|
||||||
|
{"logTime": "0811/213152", "correlationVector":"gnK0MxNgyXbNWPs59tp1Gv.0","action":"EncryptionKeysFetcher.DownloadKeys:", "result":"Success", "context":Key count: 10, Last key timestamp: 2026-07-17T21:16:54Z}
|
||||||
|
{"logTime": "0811/213152", "correlationVector":"gnK0MxNgyXbNWPs59tp1Gv.1","action":"EncryptionKeysManager::SetEncryptionKeys:", "result":"Success", "context":Key names[10]:[wimgRheq8lOIGfRV4WVcoKimTc/AOq0F+9IwiHp174I5F8axIfO8QCCbjE+9fg1EfqcrdO7m/RW7IuoOLPy6tw==][GdjhGEUfutVDRCUJOikLMkXGcpLd7Uw/1EcmxDQyl/czleXfAbh5HqA0PJRRCznjHzo3toviT7z0JXnA+liXQA==][FyZbP02mdYiJPYKaLVgtmzm6/U83YVKhhqAPS/pTdA4vq7nBrRDI5Jj2dVTByT16R08AkHEVlQHt44fUsFNgug==][YUky7ZK7bd2iWVL7pAvQz7q9P46FaQcoUWpMR1MebQzUvV6HzzY72Uag3T+UDYqQR0ewoBpnVMlAkMpMQZkRHA==][M7X+8hkU1gOr+gt7kESNKrIOQltK7LmM62a/ustC7uHDi5DJZw3djmlzb1VYjx4cZz0ptD/8/fRrQGXwyqdACg==][UECYbawrS/Luzn7cJ88XfKmR+Y5+aSB4P+DY/pbpVzcy0m33QhplS/SidutoXTKC8l/lwsL0tk8bKQDFN6ME5w==][XtlvKPhWPhaxb7J2Nb5w3uMEAu0mvD95RTWTbWb2R7WCJyftcYw6RjvDBhh3rWH7ejepTKMUwN88wsrFXHniqQ==][acPLEjd0BJ/kkL7u0BN30342USMSyJRqddIaZ/Q7F1XyWnkYvzOOFx7cDX/HMxXB/Ec0ojbxV5mVC8Vpb6Hg4w==][CsVCzdBgQ8vnG0XM1FiBJMDfLsF0BLwBbQmnXEgeolbMa15kFSj5pYQN1tvWrrfZA3UFzlpVCsM3pV4DQZzowQ==][Z8gs04R9mP5dM2DtFaTkwSDUYR23ghtyhSkUzNUhotvEHI1q2GS1N6uJRoTzMS+GBwpIqXq8Ovgslujv+2Nt6A==]}
|
||||||
|
{"logTime": "0811/213152", "correlationVector":"gnK0MxNgyXbNWPs59tp1Gv.2","action":"EncryptionKeysManager::SetEncryptionKeysWithTimestamps:", "result":"Success", "context":Key timestamps[10]:[2023-08-01T10:16:36Z][2023-09-05T18:01:02Z][2024-03-08T21:41:33Z][2024-04-12T06:14:40Z][2024-05-01T06:42:59Z][2024-10-31T20:02:53Z][2025-05-02T20:50:04Z][2025-06-11T10:46:10Z][2025-12-20T17:43:42Z][2026-07-17T21:16:54Z]}
|
||||||
|
{"logTime": "0811/213152", "correlationVector":"3nSvdnkzJZVa9kJ7aXwAbE","action":"Initial GetUpdates", "result":"", "context":Reason: NEW_CLIENT. cV=3nSvdnkzJZVa9kJ7aXwAbE}
|
||||||
|
{"logTime": "0811/213152", "correlationVector":"3nSvdnkzJZVa9kJ7aXwAbE.3","action":"GetUpdates Response", "result":"Success", "context":Received 1 update(s). cV=3nSvdnkzJZVa9kJ7aXwAbE.0;server=akswtt10300000w;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0811/213152", "correlationVector":"xmqLOPR5RCWv3XOGngT7Lt","action":"Initial GetUpdates", "result":"", "context":Reason: NEWLY_SUPPORTED_DATATYPE. cV=xmqLOPR5RCWv3XOGngT7Lt}
|
||||||
|
{"logTime": "0811/213153", "correlationVector":"xmqLOPR5RCWv3XOGngT7Lt.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt103000015"}}
|
||||||
|
{"logTime": "0811/213153", "correlationVector":"xmqLOPR5RCWv3XOGngT7Lt.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Passwords", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"104", "total":"104"}}
|
||||||
|
{"logTime": "0811/213153", "correlationVector":"xmqLOPR5RCWv3XOGngT7Lt.3","action":"GetUpdates Response", "result":"Success", "context":Received 104 update(s). cV=xmqLOPR5RCWv3XOGngT7Lt.0;server=akswtt103000015;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0811/213153", "correlationVector":"w7WkfVWNXxiIYZie8K01Fw","action":"Normal GetUpdate request", "result":"", "context":cV=w7WkfVWNXxiIYZie8K01Fw
|
||||||
|
Nudged types: Preferences, Sessions, Device Info, History
|
||||||
|
Refresh requested types: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys}
|
||||||
|
{"logTime": "0811/213154", "correlationVector":"w7WkfVWNXxiIYZie8K01Fw.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt10300001b"}}
|
||||||
|
{"logTime": "0811/213154", "correlationVector":"w7WkfVWNXxiIYZie8K01Fw.2","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Preferences", "deleted":"3", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"5", "total":"5"}}
|
||||||
|
{"logTime": "0811/213154", "correlationVector":"w7WkfVWNXxiIYZie8K01Fw.3","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Sessions", "deleted":"6", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"9", "total":"9"}}
|
||||||
|
{"logTime": "0811/213154", "correlationVector":"w7WkfVWNXxiIYZie8K01Fw.4","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"Device Info", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"1", "total":"1"}}
|
||||||
|
{"logTime": "0811/213154", "correlationVector":"w7WkfVWNXxiIYZie8K01Fw.5","action":"ProcessGetUpdates", "result":"Done", "context":{"dataType":"History", "deleted":"0", "process_failed_to_decrypt":"0", "process_pending_decryption":"0", "process_success":"63", "total":"63"}}
|
||||||
|
{"logTime": "0811/213154", "correlationVector":"w7WkfVWNXxiIYZie8K01Fw.6","action":"GetUpdates Response", "result":"Success", "context":Received 78 update(s). cV=w7WkfVWNXxiIYZie8K01Fw.0;server=akswtt10300001b;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0811/213154", "correlationVector":"jK/2hBynuMZMOkB+BVUokV","action":"Poll GetUpdate request", "result":"", "context":cV=jK/2hBynuMZMOkB+BVUokV}
|
||||||
|
{"logTime": "0811/213154", "correlationVector":"jK/2hBynuMZMOkB+BVUokV.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt10300001r"}}
|
||||||
|
{"logTime": "0811/213154", "correlationVector":"jK/2hBynuMZMOkB+BVUokV.2","action":"GetUpdates Response", "result":"Success", "context":Received 0 update(s). cV=jK/2hBynuMZMOkB+BVUokV.0;server=akswtt10300001r;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0811/213247", "correlationVector":"DIZeAYr+N3PrlyAvG1qnfL","action":"Commit Request", "result":"", "context":Item count: 3
|
||||||
|
Contributing types: Preferences, Sessions}
|
||||||
|
{"logTime": "0811/213248", "correlationVector":"DIZeAYr+N3PrlyAvG1qnfL.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt10300000w"}}
|
||||||
|
{"logTime": "0811/213248", "correlationVector":"DIZeAYr+N3PrlyAvG1qnfL.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=DIZeAYr+N3PrlyAvG1qnfL.0;server=akswtt10300000w;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
{"logTime": "0811/213252", "correlationVector":"v8YtaiJQdWQ3J8a/ysHqBE","action":"Commit Request", "result":"", "context":Item count: 1
|
||||||
|
Contributing types: Device Info}
|
||||||
|
{"logTime": "0811/213252", "correlationVector":"v8YtaiJQdWQ3J8a/ysHqBE.1","action":"SyncServerConnectionManagerRequest", "result":"SYNC_SERVER_OK", "context":{"environment":"Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral", "migrationStage":"NotStarted", "server":"akswtt103000019"}}
|
||||||
|
{"logTime": "0811/213252", "correlationVector":"v8YtaiJQdWQ3J8a/ysHqBE.2","action":"Commit Response", "result":"Success", "context":Result: Success. cV=v8YtaiJQdWQ3J8a/ysHqBE.0;server=akswtt103000019;cloudType=Consumer;environment=Prod_germanywestcentral_prod-s01-011-eur-germanywestcentral;migrationStage=NotStarted}
|
||||||
|
|||||||
@@ -533,3 +533,276 @@
|
|||||||
2026-08-05 19:31:12.499: [INFO][SyncEngineBackend::DoStartSyncing] Start syncing
|
2026-08-05 19:31:12.499: [INFO][SyncEngineBackend::DoStartSyncing] Start syncing
|
||||||
2026-08-05 20:59:06.702: [INFO][Sync] Reset engine, reason: 0
|
2026-08-05 20:59:06.702: [INFO][Sync] Reset engine, reason: 0
|
||||||
2026-08-05 20:59:06.702: [INFO][Sync] Reset engine with reason: 0
|
2026-08-05 20:59:06.702: [INFO][Sync] Reset engine with reason: 0
|
||||||
|
2026-08-09 21:20:07.091: [INFO][Sync] SyncState after authenticated was: FeatureCanStart
|
||||||
|
2026-08-09 21:20:07.986: [INFO][SyncAuthManager::SetLastAuthError] Current auth error: None
|
||||||
|
2026-08-09 21:20:07.986: [INFO][SyncAuthManager::EdgeLogTokenErrorState] Token error with: None for account type: MSA
|
||||||
|
2026-08-09 21:20:07.986: [INFO][Sync] Credentials changed for: EdgeSyncKeyDataScope
|
||||||
|
2026-08-09 21:20:12.233: [INFO][Sync] Try to start sync engine
|
||||||
|
2026-08-09 21:20:12.434: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Encryption Keys
|
||||||
|
2026-08-09 21:20:12.434: [INFO][SyncEngineBackend::LoadAndConnectNigoriController] Load and connect Nigori controller
|
||||||
|
2026-08-09 21:20:12.434: [INFO][SyncEngineBackend::DoInitialize] Control Types added: Encryption Keys
|
||||||
|
2026-08-09 21:20:12.434: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: Encryption Keys with reason: 3
|
||||||
|
2026-08-09 21:20:12.434: [INFO][SyncEngineBackend::DoUpdateKeyDataCredentials] Update key data credentials
|
||||||
|
2026-08-09 21:20:12.434: [INFO][SyncSchedulerImpl::DoConfigurationSyncCycleJob] Configure job was blocked
|
||||||
|
2026-08-09 21:20:12.438: [INFO][SyncAuthManager::SetLastAuthError] Current auth error: None
|
||||||
|
2026-08-09 21:20:12.438: [INFO][SyncAuthManager::EdgeLogTokenErrorState] Token error with: None for account type: MSA
|
||||||
|
2026-08-09 21:20:12.438: [INFO][Sync] Credentials changed for: EdgeSyncScopeNew
|
||||||
|
2026-08-09 21:20:12.438: [INFO][SyncEngineBackend::DoUpdateCredentials] Update credentials
|
||||||
|
2026-08-09 21:20:12.438: [INFO][SyncSchedulerImpl::DoConfigurationSyncCycleJob] Blocked types: and types to download: Encryption Keys
|
||||||
|
2026-08-09 21:20:13.145: [INFO][SyncEngineBackend::DoUpdateKeyDataCredentials] Update key data credentials
|
||||||
|
2026-08-09 21:20:13.156: [INFO][Sync] Started DataTypeManager configuration, reason: 4
|
||||||
|
2026-08-09 21:20:13.156: [INFO][Sync] Configuring for: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys, reason: 4, current state: 0
|
||||||
|
2026-08-09 21:20:13.156: [WARN][Sync] Crypto error data types: Passwords, Autofill Profiles, Autofill
|
||||||
|
2026-08-09 21:20:13.158: [INFO][Sync] Configure, desired: Bookmarks, Preferences, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys; Allow fail: Passwords, Autofill Profiles, Autofill
|
||||||
|
2026-08-09 21:20:13.158: [INFO][Sync] Loading: Bookmarks
|
||||||
|
2026-08-09 21:20:13.158: [INFO][Sync] Loading: Preferences
|
||||||
|
2026-08-09 21:20:13.158: [INFO][Sync] Loading: Extensions
|
||||||
|
2026-08-09 21:20:13.158: [INFO][Sync] Loading: Sessions
|
||||||
|
2026-08-09 21:20:13.158: [INFO][Sync] Loading: Extension settings
|
||||||
|
2026-08-09 21:20:13.158: [INFO][Sync] Loading: History Delete Directives
|
||||||
|
2026-08-09 21:20:13.158: [INFO][Sync] Loading: Device Info
|
||||||
|
2026-08-09 21:20:13.158: [INFO][Sync] Loading: User Consents
|
||||||
|
2026-08-09 21:20:13.158: [INFO][Sync] Loading: Send Tab To Self
|
||||||
|
2026-08-09 21:20:13.158: [INFO][Sync] Loading: Web Apps
|
||||||
|
2026-08-09 21:20:13.158: [INFO][Sync] Loading: History
|
||||||
|
2026-08-09 21:20:13.158: [INFO][Sync] Loading: Saved Tab Group
|
||||||
|
2026-08-09 21:20:13.158: [INFO][Sync] Loading: WebAuthn Credentials
|
||||||
|
2026-08-09 21:20:13.158: [INFO][Sync] Loading: Edge E Drop
|
||||||
|
2026-08-09 21:20:13.158: [INFO][Sync] Loading: Edge Hub App Usage
|
||||||
|
2026-08-09 21:20:13.158: [INFO][Sync] Loading: Edge Workspace
|
||||||
|
2026-08-09 21:20:13.164: [INFO][Sync] All data types are ready for configure.
|
||||||
|
2026-08-09 21:20:13.685: [INFO][Sync] Started DataTypeManager configuration, reason: 5
|
||||||
|
2026-08-09 21:20:13.685: [INFO][Sync] Configuring for: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys, reason: 5, current state: 1
|
||||||
|
2026-08-09 21:20:13.689: [INFO][SyncEngineBackend::DoStartConfiguration] Start configuration
|
||||||
|
2026-08-09 21:20:13.689: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: with reason: 4
|
||||||
|
2026-08-09 21:20:13.689: [INFO][SyncEngineBackend::DoFinishConfigureDataTypes] Failed to download types: and succeeded types:
|
||||||
|
2026-08-09 21:20:13.689: [INFO][Sync] ConfigurationDone, failed: , succeeded: , remaining count: 3
|
||||||
|
2026-08-09 21:20:13.689: [WARN][Sync] Reconfigure requested while configuration ongoing.
|
||||||
|
2026-08-09 21:20:13.689: [INFO][Sync] Configuring for: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys, reason: 5, current state: 2
|
||||||
|
2026-08-09 21:20:13.689: [INFO][Sync] Configure, desired: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys; Allow fail:
|
||||||
|
2026-08-09 21:20:13.689: [INFO][Sync] Loading: Passwords
|
||||||
|
2026-08-09 21:20:13.689: [INFO][Sync] Loading: Autofill Profiles
|
||||||
|
2026-08-09 21:20:13.689: [INFO][Sync] Loading: Autofill
|
||||||
|
2026-08-09 21:20:13.690: [INFO][Sync] All data types are ready for configure.
|
||||||
|
2026-08-09 21:20:13.690: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Passwords
|
||||||
|
2026-08-09 21:20:13.690: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: with reason: 5
|
||||||
|
2026-08-09 21:20:13.690: [INFO][SyncEngineBackend::DoFinishConfigureDataTypes] Failed to download types: and succeeded types:
|
||||||
|
2026-08-09 21:20:13.690: [INFO][Sync] ConfigurationDone, failed: , succeeded: , remaining count: 3
|
||||||
|
2026-08-09 21:20:13.690: [INFO][Sync] Prepare to configure types: Passwords, Encryption Keys
|
||||||
|
2026-08-09 21:20:13.690: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: Passwords, Encryption Keys with reason: 5
|
||||||
|
2026-08-09 21:20:13.690: [INFO][SyncSchedulerImpl::DoConfigurationSyncCycleJob] Blocked types: and types to download: Passwords, Encryption Keys
|
||||||
|
2026-08-09 21:20:14.182: [INFO][SyncEngineBackend::DoFinishConfigureDataTypes] Failed to download types: and succeeded types: Passwords, Encryption Keys
|
||||||
|
2026-08-09 21:20:14.186: [INFO][Sync] ConfigurationDone, failed: , succeeded: Passwords, Encryption Keys, remaining count: 2
|
||||||
|
2026-08-09 21:20:14.186: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: with reason: 5
|
||||||
|
2026-08-09 21:20:14.186: [INFO][SyncEngineBackend::DoFinishConfigureDataTypes] Failed to download types: and succeeded types:
|
||||||
|
2026-08-09 21:20:14.186: [INFO][Sync] ConfigurationDone, failed: , succeeded: , remaining count: 1
|
||||||
|
2026-08-09 21:20:14.186: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: with reason: 5
|
||||||
|
2026-08-09 21:20:14.186: [INFO][SyncEngineBackend::DoFinishConfigureDataTypes] Failed to download types: and succeeded types:
|
||||||
|
2026-08-09 21:20:14.186: [INFO][Sync] ConfigurationDone, failed: , succeeded: , remaining count: 0
|
||||||
|
2026-08-09 21:20:14.186: [INFO][Sync] Configuration completed, state: 7
|
||||||
|
2026-08-09 21:20:14.186: [INFO][Sync] Configured DataTypeManager: Ok
|
||||||
|
2026-08-09 21:20:14.190: [INFO][SyncEngineBackend::DoStartSyncing] Start syncing
|
||||||
|
2026-08-09 21:35:59.434: [INFO][Sync] Reset engine, reason: 0
|
||||||
|
2026-08-09 21:35:59.434: [INFO][Sync] Reset engine with reason: 0
|
||||||
|
2026-08-10 20:38:48.195: [INFO][Sync] Reset engine, reason: 8
|
||||||
|
2026-08-10 20:38:48.195: [INFO][Sync] Stopped: Bookmarks
|
||||||
|
2026-08-10 20:38:48.195: [INFO][Sync] Stopped: Preferences
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] Stopped: Passwords
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] Stopped: Autofill Profiles
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] Stopped: Autofill
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] Stopped: Extensions
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] Stopped: Sessions
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] Stopped: Extension settings
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] Stopped: History Delete Directives
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] Stopped: Device Info
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] Stopped: User Consents
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] Stopped: Send Tab To Self
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] Stopped: Web Apps
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] Stopped: History
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] Stopped: Saved Tab Group
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] Stopped: WebAuthn Credentials
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] Stopped: Edge E Drop
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] Stopped: Edge Hub App Usage
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] Stopped: Edge Workspace
|
||||||
|
2026-08-10 20:38:48.196: [INFO][Sync] SyncState after authenticated was: NotSignedIn
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Reset engine, reason: 8
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: Bookmarks
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: Preferences
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: Passwords
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: Autofill Profiles
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: Autofill
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: Extensions
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: Sessions
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: Extension settings
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: History Delete Directives
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: Device Info
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: User Consents
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: Send Tab To Self
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: Web Apps
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: History
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: Saved Tab Group
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: WebAuthn Credentials
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: Edge E Drop
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: Edge Hub App Usage
|
||||||
|
2026-08-10 20:38:48.323: [INFO][Sync] Stopped: Edge Workspace
|
||||||
|
2026-08-10 20:38:50.016: [INFO][Sync] Try to start sync engine
|
||||||
|
2026-08-10 20:38:50.017: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Encryption Keys
|
||||||
|
2026-08-10 20:38:50.017: [INFO][SyncEngineBackend::LoadAndConnectNigoriController] Load and connect Nigori controller
|
||||||
|
2026-08-10 20:38:50.017: [INFO][SyncEngineBackend::DoInitialize] Control Types added: Encryption Keys
|
||||||
|
2026-08-10 20:38:50.017: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: Encryption Keys with reason: 3
|
||||||
|
2026-08-10 20:38:50.017: [INFO][SyncSchedulerImpl::DoConfigurationSyncCycleJob] Configure job was blocked
|
||||||
|
2026-08-10 20:38:50.039: [INFO][SyncAuthManager::SetLastAuthError] Current auth error: None
|
||||||
|
2026-08-10 20:38:50.039: [INFO][SyncAuthManager::EdgeLogTokenErrorState] Token error with: None for account type: MSA
|
||||||
|
2026-08-10 20:38:50.039: [INFO][Sync] Credentials changed for: EdgeSyncScopeNew
|
||||||
|
2026-08-10 20:38:50.502: [INFO][SyncAuthManager::SetLastAuthError] Current auth error: None
|
||||||
|
2026-08-10 20:38:50.502: [INFO][SyncAuthManager::EdgeLogTokenErrorState] Token error with: None for account type: MSA
|
||||||
|
2026-08-10 20:38:50.502: [INFO][Sync] Credentials changed for: EdgeSyncKeyDataScope
|
||||||
|
2026-08-10 20:38:50.502: [INFO][SyncEngineBackend::DoUpdateKeyDataCredentials] Update key data credentials
|
||||||
|
2026-08-10 20:38:50.502: [INFO][SyncEngineBackend::DoUpdateCredentials] Update credentials
|
||||||
|
2026-08-10 20:38:50.502: [INFO][SyncSchedulerImpl::DoConfigurationSyncCycleJob] Blocked types: and types to download: Encryption Keys
|
||||||
|
2026-08-10 20:38:51.373: [INFO][Sync] Started DataTypeManager configuration, reason: 4
|
||||||
|
2026-08-10 20:38:51.373: [INFO][Sync] Configuring for: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys, reason: 4, current state: 0
|
||||||
|
2026-08-10 20:38:51.373: [WARN][Sync] Crypto error data types: Passwords, Autofill Profiles, Autofill
|
||||||
|
2026-08-10 20:38:51.376: [INFO][Sync] Configure, desired: Bookmarks, Preferences, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys; Allow fail: Passwords, Autofill Profiles, Autofill
|
||||||
|
2026-08-10 20:38:51.376: [INFO][Sync] Loading: Bookmarks
|
||||||
|
2026-08-10 20:38:51.376: [INFO][Sync] Loading: Preferences
|
||||||
|
2026-08-10 20:38:51.376: [INFO][Sync] Loading: Extensions
|
||||||
|
2026-08-10 20:38:51.376: [INFO][Sync] Loading: Sessions
|
||||||
|
2026-08-10 20:38:51.376: [INFO][Sync] Loading: Extension settings
|
||||||
|
2026-08-10 20:38:51.376: [INFO][Sync] Loading: History Delete Directives
|
||||||
|
2026-08-10 20:38:51.376: [INFO][Sync] Loading: Device Info
|
||||||
|
2026-08-10 20:38:51.376: [INFO][Sync] Loading: User Consents
|
||||||
|
2026-08-10 20:38:51.376: [INFO][Sync] Loading: Send Tab To Self
|
||||||
|
2026-08-10 20:38:51.376: [INFO][Sync] Loading: Web Apps
|
||||||
|
2026-08-10 20:38:51.376: [INFO][Sync] Loading: History
|
||||||
|
2026-08-10 20:38:51.376: [INFO][Sync] Loading: Saved Tab Group
|
||||||
|
2026-08-10 20:38:51.376: [INFO][Sync] Loading: WebAuthn Credentials
|
||||||
|
2026-08-10 20:38:51.376: [INFO][Sync] Loading: Edge E Drop
|
||||||
|
2026-08-10 20:38:51.376: [INFO][Sync] Loading: Edge Hub App Usage
|
||||||
|
2026-08-10 20:38:51.376: [INFO][Sync] Loading: Edge Workspace
|
||||||
|
2026-08-10 20:38:51.384: [INFO][Sync] All data types are ready for configure.
|
||||||
|
2026-08-10 20:38:51.863: [INFO][Sync] Started DataTypeManager configuration, reason: 5
|
||||||
|
2026-08-10 20:38:51.863: [INFO][Sync] Configuring for: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys, reason: 5, current state: 1
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncEngineBackend::DoStartConfiguration] Start configuration
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Bookmarks
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Preferences
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Extensions
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Sessions
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Extension settings
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for History Delete Directives
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Device Info
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Send Tab To Self
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Web Apps
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for History
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Saved Tab Group
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for WebAuthn Credentials
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Edge E Drop
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Edge Hub App Usage
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Edge Workspace
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: with reason: 4
|
||||||
|
2026-08-10 20:38:51.867: [INFO][SyncEngineBackend::DoFinishConfigureDataTypes] Failed to download types: and succeeded types:
|
||||||
|
2026-08-10 20:38:51.868: [INFO][Sync] ConfigurationDone, failed: , succeeded: , remaining count: 3
|
||||||
|
2026-08-10 20:38:51.868: [WARN][Sync] Reconfigure requested while configuration ongoing.
|
||||||
|
2026-08-10 20:38:51.868: [INFO][Sync] Configuring for: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys, reason: 5, current state: 2
|
||||||
|
2026-08-10 20:38:51.868: [INFO][Sync] Configure, desired: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys; Allow fail:
|
||||||
|
2026-08-10 20:38:51.868: [INFO][Sync] Loading: Passwords
|
||||||
|
2026-08-10 20:38:51.868: [INFO][Sync] Loading: Autofill Profiles
|
||||||
|
2026-08-10 20:38:51.868: [INFO][Sync] Loading: Autofill
|
||||||
|
2026-08-10 20:38:51.868: [INFO][Sync] All data types are ready for configure.
|
||||||
|
2026-08-10 20:38:51.868: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Passwords
|
||||||
|
2026-08-10 20:38:51.868: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Autofill Profiles
|
||||||
|
2026-08-10 20:38:51.868: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Autofill
|
||||||
|
2026-08-10 20:38:51.868: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: with reason: 5
|
||||||
|
2026-08-10 20:38:51.868: [INFO][SyncEngineBackend::DoFinishConfigureDataTypes] Failed to download types: and succeeded types:
|
||||||
|
2026-08-10 20:38:51.870: [INFO][Sync] ConfigurationDone, failed: , succeeded: , remaining count: 3
|
||||||
|
2026-08-10 20:38:51.870: [INFO][Sync] Prepare to configure types: Passwords, Device Info, Edge E Drop, Encryption Keys
|
||||||
|
2026-08-10 20:38:51.870: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: Passwords, Device Info, Edge E Drop, Encryption Keys with reason: 5
|
||||||
|
2026-08-10 20:38:51.870: [INFO][SyncSchedulerImpl::DoConfigurationSyncCycleJob] Blocked types: and types to download: Passwords, Device Info, Edge E Drop, Encryption Keys
|
||||||
|
2026-08-10 20:38:52.763: [INFO][SyncEngineBackend::DoFinishConfigureDataTypes] Failed to download types: and succeeded types: Passwords, Device Info, Edge E Drop, Encryption Keys
|
||||||
|
2026-08-10 20:38:52.765: [INFO][Sync] ConfigurationDone, failed: , succeeded: Passwords, Device Info, Edge E Drop, Encryption Keys, remaining count: 2
|
||||||
|
2026-08-10 20:38:52.765: [INFO][Sync] Prepare to configure types: Bookmarks, Preferences, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Send Tab To Self, Web Apps, Saved Tab Group, WebAuthn Credentials, Edge Hub App Usage, Edge Workspace, Encryption Keys
|
||||||
|
2026-08-10 20:38:52.766: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: Bookmarks, Preferences, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Send Tab To Self, Web Apps, Saved Tab Group, WebAuthn Credentials, Edge Hub App Usage, Edge Workspace, Encryption Keys with reason: 5
|
||||||
|
2026-08-10 20:38:52.766: [INFO][SyncSchedulerImpl::DoConfigurationSyncCycleJob] Blocked types: and types to download: Bookmarks, Preferences, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Send Tab To Self, Web Apps, Saved Tab Group, WebAuthn Credentials, Edge Hub App Usage, Edge Workspace, Encryption Keys
|
||||||
|
2026-08-10 20:39:00.329: [INFO][SyncEngineBackend::DoFinishConfigureDataTypes] Failed to download types: and succeeded types: Bookmarks, Preferences, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Send Tab To Self, Web Apps, Saved Tab Group, WebAuthn Credentials, Edge Hub App Usage, Edge Workspace, Encryption Keys
|
||||||
|
2026-08-10 20:39:00.331: [INFO][Sync] ConfigurationDone, failed: , succeeded: Bookmarks, Preferences, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Send Tab To Self, Web Apps, Saved Tab Group, WebAuthn Credentials, Edge Hub App Usage, Edge Workspace, Encryption Keys, remaining count: 1
|
||||||
|
2026-08-10 20:39:00.331: [INFO][Sync] Prepare to configure types: History, Encryption Keys
|
||||||
|
2026-08-10 20:39:00.331: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: History, Encryption Keys with reason: 5
|
||||||
|
2026-08-10 20:39:00.331: [INFO][SyncSchedulerImpl::DoConfigurationSyncCycleJob] Blocked types: and types to download: History, Encryption Keys
|
||||||
|
2026-08-10 20:39:01.666: [INFO][SyncEngineBackend::DoFinishConfigureDataTypes] Failed to download types: and succeeded types: History, Encryption Keys
|
||||||
|
2026-08-10 20:39:01.669: [INFO][Sync] ConfigurationDone, failed: , succeeded: History, Encryption Keys, remaining count: 0
|
||||||
|
2026-08-10 20:39:01.669: [INFO][Sync] Configuration completed, state: 7
|
||||||
|
2026-08-10 20:39:01.669: [INFO][Sync] Configured DataTypeManager: Ok
|
||||||
|
2026-08-10 20:39:01.671: [INFO][SyncEngineBackend::DoStartSyncing] Start syncing
|
||||||
|
2026-08-10 21:36:23.146: [INFO][Sync] Reset engine, reason: 0
|
||||||
|
2026-08-10 21:36:23.146: [INFO][Sync] Reset engine with reason: 0
|
||||||
|
2026-08-11 21:31:45.865: [INFO][Sync] SyncState after authenticated was: FeatureCanStart
|
||||||
|
2026-08-11 21:31:46.706: [INFO][SyncAuthManager::SetLastAuthError] Current auth error: None
|
||||||
|
2026-08-11 21:31:46.706: [INFO][SyncAuthManager::EdgeLogTokenErrorState] Token error with: None for account type: MSA
|
||||||
|
2026-08-11 21:31:46.706: [INFO][Sync] Credentials changed for: EdgeSyncKeyDataScope
|
||||||
|
2026-08-11 21:31:51.517: [INFO][Sync] Try to start sync engine
|
||||||
|
2026-08-11 21:31:51.641: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Encryption Keys
|
||||||
|
2026-08-11 21:31:51.641: [INFO][SyncEngineBackend::LoadAndConnectNigoriController] Load and connect Nigori controller
|
||||||
|
2026-08-11 21:31:51.641: [INFO][SyncEngineBackend::DoInitialize] Control Types added: Encryption Keys
|
||||||
|
2026-08-11 21:31:51.641: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: Encryption Keys with reason: 3
|
||||||
|
2026-08-11 21:31:51.641: [INFO][SyncEngineBackend::DoUpdateKeyDataCredentials] Update key data credentials
|
||||||
|
2026-08-11 21:31:51.641: [INFO][SyncSchedulerImpl::DoConfigurationSyncCycleJob] Configure job was blocked
|
||||||
|
2026-08-11 21:31:51.645: [INFO][SyncAuthManager::SetLastAuthError] Current auth error: None
|
||||||
|
2026-08-11 21:31:51.645: [INFO][SyncAuthManager::EdgeLogTokenErrorState] Token error with: None for account type: MSA
|
||||||
|
2026-08-11 21:31:51.645: [INFO][Sync] Credentials changed for: EdgeSyncScopeNew
|
||||||
|
2026-08-11 21:31:51.645: [INFO][SyncEngineBackend::DoUpdateCredentials] Update credentials
|
||||||
|
2026-08-11 21:31:51.645: [INFO][SyncSchedulerImpl::DoConfigurationSyncCycleJob] Blocked types: and types to download: Encryption Keys
|
||||||
|
2026-08-11 21:31:52.322: [INFO][SyncEngineBackend::DoUpdateKeyDataCredentials] Update key data credentials
|
||||||
|
2026-08-11 21:31:52.327: [INFO][Sync] Started DataTypeManager configuration, reason: 4
|
||||||
|
2026-08-11 21:31:52.327: [INFO][Sync] Configuring for: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys, reason: 4, current state: 0
|
||||||
|
2026-08-11 21:31:52.327: [WARN][Sync] Crypto error data types: Passwords, Autofill Profiles, Autofill
|
||||||
|
2026-08-11 21:31:52.328: [INFO][Sync] Configure, desired: Bookmarks, Preferences, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys; Allow fail: Passwords, Autofill Profiles, Autofill
|
||||||
|
2026-08-11 21:31:52.329: [INFO][Sync] Loading: Bookmarks
|
||||||
|
2026-08-11 21:31:52.329: [INFO][Sync] Loading: Preferences
|
||||||
|
2026-08-11 21:31:52.329: [INFO][Sync] Loading: Extensions
|
||||||
|
2026-08-11 21:31:52.329: [INFO][Sync] Loading: Sessions
|
||||||
|
2026-08-11 21:31:52.329: [INFO][Sync] Loading: Extension settings
|
||||||
|
2026-08-11 21:31:52.329: [INFO][Sync] Loading: History Delete Directives
|
||||||
|
2026-08-11 21:31:52.329: [INFO][Sync] Loading: Device Info
|
||||||
|
2026-08-11 21:31:52.329: [INFO][Sync] Loading: User Consents
|
||||||
|
2026-08-11 21:31:52.329: [INFO][Sync] Loading: Send Tab To Self
|
||||||
|
2026-08-11 21:31:52.329: [INFO][Sync] Loading: Web Apps
|
||||||
|
2026-08-11 21:31:52.329: [INFO][Sync] Loading: History
|
||||||
|
2026-08-11 21:31:52.329: [INFO][Sync] Loading: Saved Tab Group
|
||||||
|
2026-08-11 21:31:52.329: [INFO][Sync] Loading: WebAuthn Credentials
|
||||||
|
2026-08-11 21:31:52.329: [INFO][Sync] Loading: Edge E Drop
|
||||||
|
2026-08-11 21:31:52.329: [INFO][Sync] Loading: Edge Hub App Usage
|
||||||
|
2026-08-11 21:31:52.329: [INFO][Sync] Loading: Edge Workspace
|
||||||
|
2026-08-11 21:31:52.332: [INFO][Sync] All data types are ready for configure.
|
||||||
|
2026-08-11 21:31:52.913: [INFO][Sync] Started DataTypeManager configuration, reason: 5
|
||||||
|
2026-08-11 21:31:52.913: [INFO][Sync] Configuring for: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys, reason: 5, current state: 1
|
||||||
|
2026-08-11 21:31:52.917: [INFO][SyncEngineBackend::DoStartConfiguration] Start configuration
|
||||||
|
2026-08-11 21:31:52.917: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: with reason: 4
|
||||||
|
2026-08-11 21:31:52.917: [INFO][SyncEngineBackend::DoFinishConfigureDataTypes] Failed to download types: and succeeded types:
|
||||||
|
2026-08-11 21:31:52.917: [INFO][Sync] ConfigurationDone, failed: , succeeded: , remaining count: 3
|
||||||
|
2026-08-11 21:31:52.917: [WARN][Sync] Reconfigure requested while configuration ongoing.
|
||||||
|
2026-08-11 21:31:52.917: [INFO][Sync] Configuring for: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys, reason: 5, current state: 2
|
||||||
|
2026-08-11 21:31:52.917: [INFO][Sync] Configure, desired: Bookmarks, Preferences, Passwords, Autofill Profiles, Autofill, Extensions, Sessions, Extension settings, History Delete Directives, Device Info, User Consents, Send Tab To Self, Web Apps, History, Saved Tab Group, WebAuthn Credentials, Edge E Drop, Edge Hub App Usage, Edge Workspace, Encryption Keys; Allow fail:
|
||||||
|
2026-08-11 21:31:52.917: [INFO][Sync] Loading: Passwords
|
||||||
|
2026-08-11 21:31:52.917: [INFO][Sync] Loading: Autofill Profiles
|
||||||
|
2026-08-11 21:31:52.917: [INFO][Sync] Loading: Autofill
|
||||||
|
2026-08-11 21:31:52.917: [INFO][Sync] All data types are ready for configure.
|
||||||
|
2026-08-11 21:31:52.917: [INFO][SyncManagerImpl::NudgeForInitialDownload] Initial download nudge for Passwords
|
||||||
|
2026-08-11 21:31:52.917: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: with reason: 5
|
||||||
|
2026-08-11 21:31:52.917: [INFO][SyncEngineBackend::DoFinishConfigureDataTypes] Failed to download types: and succeeded types:
|
||||||
|
2026-08-11 21:31:52.917: [INFO][Sync] ConfigurationDone, failed: , succeeded: , remaining count: 3
|
||||||
|
2026-08-11 21:31:52.917: [INFO][Sync] Prepare to configure types: Passwords, Encryption Keys
|
||||||
|
2026-08-11 21:31:52.917: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: Passwords, Encryption Keys with reason: 5
|
||||||
|
2026-08-11 21:31:52.917: [INFO][SyncSchedulerImpl::DoConfigurationSyncCycleJob] Blocked types: and types to download: Passwords, Encryption Keys
|
||||||
|
2026-08-11 21:31:53.439: [INFO][SyncEngineBackend::DoFinishConfigureDataTypes] Failed to download types: and succeeded types: Passwords, Encryption Keys
|
||||||
|
2026-08-11 21:31:53.441: [INFO][Sync] ConfigurationDone, failed: , succeeded: Passwords, Encryption Keys, remaining count: 2
|
||||||
|
2026-08-11 21:31:53.441: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: with reason: 5
|
||||||
|
2026-08-11 21:31:53.441: [INFO][SyncEngineBackend::DoFinishConfigureDataTypes] Failed to download types: and succeeded types:
|
||||||
|
2026-08-11 21:31:53.441: [INFO][Sync] ConfigurationDone, failed: , succeeded: , remaining count: 1
|
||||||
|
2026-08-11 21:31:53.441: [INFO][SyncManagerImpl::ConfigureSyncer] Types to download: with reason: 5
|
||||||
|
2026-08-11 21:31:53.441: [INFO][SyncEngineBackend::DoFinishConfigureDataTypes] Failed to download types: and succeeded types:
|
||||||
|
2026-08-11 21:31:53.442: [INFO][Sync] ConfigurationDone, failed: , succeeded: , remaining count: 0
|
||||||
|
2026-08-11 21:31:53.442: [INFO][Sync] Configuration completed, state: 7
|
||||||
|
2026-08-11 21:31:53.442: [INFO][Sync] Configured DataTypeManager: Ok
|
||||||
|
2026-08-11 21:31:53.445: [INFO][SyncEngineBackend::DoStartSyncing] Start syncing
|
||||||
|
2026-08-11 21:33:41.283: [INFO][Sync] Reset engine, reason: 0
|
||||||
|
2026-08-11 21:33:41.283: [INFO][Sync] Reset engine with reason: 0
|
||||||
|
|||||||
Binary file not shown.
+3
-3
@@ -1,3 +1,3 @@
|
|||||||
2026/08/05-21:31:11.888 5224 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Sync Extension Settings\adgpaedigldkggglmagcgklkomgfkepc/MANIFEST-000001
|
2026/08/11-23:31:45.873 4e54 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Sync Extension Settings\adgpaedigldkggglmagcgklkomgfkepc/MANIFEST-000001
|
||||||
2026/08/05-21:31:11.888 5224 Recovering log #3
|
2026/08/11-23:31:45.873 4e54 Recovering log #3
|
||||||
2026/08/05-21:31:11.889 5224 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Sync Extension Settings\adgpaedigldkggglmagcgklkomgfkepc/000003.log
|
2026/08/11-23:31:45.873 4e54 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Sync Extension Settings\adgpaedigldkggglmagcgklkomgfkepc/000003.log
|
||||||
|
|||||||
+3
-3
@@ -1,3 +1,3 @@
|
|||||||
2026/08/04-22:51:52.162 334 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Sync Extension Settings\adgpaedigldkggglmagcgklkomgfkepc/MANIFEST-000001
|
2026/08/10-22:39:00.329 5bd0 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Sync Extension Settings\adgpaedigldkggglmagcgklkomgfkepc/MANIFEST-000001
|
||||||
2026/08/04-22:51:52.163 334 Recovering log #3
|
2026/08/10-22:39:00.330 5bd0 Recovering log #3
|
||||||
2026/08/04-22:51:52.166 334 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Sync Extension Settings\adgpaedigldkggglmagcgklkomgfkepc/000003.log
|
2026/08/10-22:39:00.330 5bd0 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Sync Extension Settings\adgpaedigldkggglmagcgklkomgfkepc/000003.log
|
||||||
|
|||||||
+3
-3
@@ -1,3 +1,3 @@
|
|||||||
2026/08/05-21:31:11.893 5224 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Sync Extension Settings\fancfknaplihpclbhbpclnmmjcjanbaf/MANIFEST-000001
|
2026/08/11-23:31:45.877 4e54 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Sync Extension Settings\fancfknaplihpclbhbpclnmmjcjanbaf/MANIFEST-000001
|
||||||
2026/08/05-21:31:11.893 5224 Recovering log #3
|
2026/08/11-23:31:45.878 4e54 Recovering log #3
|
||||||
2026/08/05-21:31:11.894 5224 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Sync Extension Settings\fancfknaplihpclbhbpclnmmjcjanbaf/000003.log
|
2026/08/11-23:31:45.878 4e54 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Sync Extension Settings\fancfknaplihpclbhbpclnmmjcjanbaf/000003.log
|
||||||
|
|||||||
+3
-3
@@ -1,3 +1,3 @@
|
|||||||
2026/08/04-22:51:52.174 334 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Sync Extension Settings\fancfknaplihpclbhbpclnmmjcjanbaf/MANIFEST-000001
|
2026/08/10-22:39:00.334 5bd0 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Sync Extension Settings\fancfknaplihpclbhbpclnmmjcjanbaf/MANIFEST-000001
|
||||||
2026/08/04-22:51:52.174 334 Recovering log #3
|
2026/08/10-22:39:00.334 5bd0 Recovering log #3
|
||||||
2026/08/04-22:51:52.175 334 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Sync Extension Settings\fancfknaplihpclbhbpclnmmjcjanbaf/000003.log
|
2026/08/10-22:39:00.335 5bd0 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Sync Extension Settings\fancfknaplihpclbhbpclnmmjcjanbaf/000003.log
|
||||||
|
|||||||
+3
-3
@@ -1,3 +1,3 @@
|
|||||||
2026/08/05-21:31:11.898 5224 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Sync Extension Settings\jbllkioefpagebehjdpafimenmfochkd/MANIFEST-000001
|
2026/08/11-23:31:45.884 4e54 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Sync Extension Settings\jbllkioefpagebehjdpafimenmfochkd/MANIFEST-000001
|
||||||
2026/08/05-21:31:11.898 5224 Recovering log #3
|
2026/08/11-23:31:45.884 4e54 Recovering log #3
|
||||||
2026/08/05-21:31:11.898 5224 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\Sync Extension Settings\jbllkioefpagebehjdpafimenmfochkd/000003.log
|
2026/08/11-23:31:45.885 4e54 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\Sync Extension Settings\jbllkioefpagebehjdpafimenmfochkd/000003.log
|
||||||
|
|||||||
+3
-3
@@ -1,3 +1,3 @@
|
|||||||
2026/08/04-22:51:52.179 334 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Sync Extension Settings\jbllkioefpagebehjdpafimenmfochkd/MANIFEST-000001
|
2026/08/10-22:39:00.338 5bd0 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Sync Extension Settings\jbllkioefpagebehjdpafimenmfochkd/MANIFEST-000001
|
||||||
2026/08/04-22:51:52.180 334 Recovering log #3
|
2026/08/10-22:39:00.339 5bd0 Recovering log #3
|
||||||
2026/08/04-22:51:52.180 334 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\Sync Extension Settings\jbllkioefpagebehjdpafimenmfochkd/000003.log
|
2026/08/10-22:39:00.339 5bd0 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\Sync Extension Settings\jbllkioefpagebehjdpafimenmfochkd/000003.log
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -85,3 +85,41 @@
|
|||||||
2026-08-05 19:31:12.498: [INFO] Sync initialization duration: 10248ms
|
2026-08-05 19:31:12.498: [INFO] Sync initialization duration: 10248ms
|
||||||
2026-08-05 20:59:06.578: [INFO] VisibilityChanged: 0
|
2026-08-05 20:59:06.578: [INFO] VisibilityChanged: 0
|
||||||
2026-08-05 20:59:06.699: [INFO] BookmarksSnapshot Shutdown total=18 bar=7 other=0 mobile=0 showBar=1 showBarNTP=0
|
2026-08-05 20:59:06.699: [INFO] BookmarksSnapshot Shutdown total=18 bar=7 other=0 mobile=0 showBar=1 showBarNTP=0
|
||||||
|
2026-08-09 21:20:07.206: [INFO] CurrentProfilePath: C:\Users\larsh\AppData\Local\Temp\flutter_tools.8e7484c1\flutter_tools_chrome_device.366bf005\Default
|
||||||
|
2026-08-09 21:20:07.206: [INFO] Profiles total count: 1
|
||||||
|
2026-08-09 21:20:07.207: [INFO] Profile: name=Profil 1 path=C:\Users\larsh\AppData\Local\Temp\flutter_tools.8e7484c1\flutter_tools_chrome_device.366bf005\Default lastActive=2026-08-09T21:20:07.187Z
|
||||||
|
2026-08-09 21:20:07.207: [INFO] LastUsedProfileDir: C:\Users\larsh\AppData\Local\Temp\flutter_tools.8e7484c1\flutter_tools_chrome_device.366bf005\Default
|
||||||
|
2026-08-09 21:20:07.207: [INFO] MostRecentlyActiveProfile: name=Profil 1 path=C:\Users\larsh\AppData\Local\Temp\flutter_tools.8e7484c1\flutter_tools_chrome_device.366bf005\Default lastActive=2026-08-09T21:20:07.187Z
|
||||||
|
2026-08-09 21:20:07.207: [INFO] OnDoneLoading sync enabled: 1
|
||||||
|
2026-08-09 21:20:07.207: [INFO] BookmarkModelLoaded, ids_reassigned: 0
|
||||||
|
2026-08-09 21:20:07.207: [INFO] BookmarksLoadDropped droppedNodes=0
|
||||||
|
2026-08-09 21:20:07.207: [INFO] BookmarksSnapshot Startup total=18 bar=7 other=0 mobile=0 showBar=1 showBarNTP=0
|
||||||
|
2026-08-09 21:20:14.189: [INFO] Sync initialization duration: 1747ms
|
||||||
|
2026-08-09 21:35:59.342: [INFO] VisibilityChanged: 0
|
||||||
|
2026-08-09 21:35:59.434: [INFO] BookmarksSnapshot Shutdown total=18 bar=7 other=0 mobile=0 showBar=1 showBarNTP=0
|
||||||
|
2026-08-10 20:38:48.321: [INFO] CurrentProfilePath: C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default
|
||||||
|
2026-08-10 20:38:48.321: [INFO] Profiles total count: 1
|
||||||
|
2026-08-10 20:38:48.322: [INFO] Profile: name=Profil 1 path=C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default lastActive=2026-08-10T20:38:48.299Z
|
||||||
|
2026-08-10 20:38:48.322: [INFO] LastUsedProfileDir: C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default
|
||||||
|
2026-08-10 20:38:48.322: [INFO] MostRecentlyActiveProfile: name=Profil 1 path=C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default lastActive=2026-08-10T20:38:48.299Z
|
||||||
|
2026-08-10 20:38:48.322: [INFO] OnDoneLoading sync enabled: 0
|
||||||
|
2026-08-10 20:38:48.322: [INFO] BookmarkModelLoaded, ids_reassigned: 0
|
||||||
|
2026-08-10 20:38:48.322: [INFO] BookmarksLoadDropped droppedNodes=0
|
||||||
|
2026-08-10 20:38:48.322: [INFO] BookmarksSnapshot Startup total=18 bar=7 other=0 mobile=0 showBar=1 showBarNTP=0
|
||||||
|
2026-08-10 20:38:50.024: [INFO] Primary account changed.
|
||||||
|
2026-08-10 20:38:50.024: [INFO] OnPrimaryAccountChanged PrimaryAccountChangeEvent::Type::kSet
|
||||||
|
2026-08-10 20:39:01.671: [INFO] Sync initialization duration: 13347ms
|
||||||
|
2026-08-10 21:36:23.027: [INFO] VisibilityChanged: 0
|
||||||
|
2026-08-10 21:36:23.146: [INFO] BookmarksSnapshot Shutdown total=18 bar=7 other=0 mobile=0 showBar=1 showBarNTP=0
|
||||||
|
2026-08-11 21:31:45.993: [INFO] CurrentProfilePath: C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default
|
||||||
|
2026-08-11 21:31:45.993: [INFO] Profiles total count: 1
|
||||||
|
2026-08-11 21:31:45.993: [INFO] Profile: name=Profil 1 path=C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default lastActive=2026-08-11T21:31:45.974Z
|
||||||
|
2026-08-11 21:31:45.993: [INFO] LastUsedProfileDir: C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default
|
||||||
|
2026-08-11 21:31:45.993: [INFO] MostRecentlyActiveProfile: name=Profil 1 path=C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default lastActive=2026-08-11T21:31:45.974Z
|
||||||
|
2026-08-11 21:31:45.993: [INFO] OnDoneLoading sync enabled: 1
|
||||||
|
2026-08-11 21:31:45.993: [INFO] BookmarkModelLoaded, ids_reassigned: 0
|
||||||
|
2026-08-11 21:31:45.993: [INFO] BookmarksLoadDropped droppedNodes=0
|
||||||
|
2026-08-11 21:31:45.993: [INFO] BookmarksSnapshot Startup total=18 bar=7 other=0 mobile=0 showBar=1 showBarNTP=0
|
||||||
|
2026-08-11 21:31:53.445: [INFO] Sync initialization duration: 1796ms
|
||||||
|
2026-08-11 21:33:41.198: [INFO] VisibilityChanged: 0
|
||||||
|
2026-08-11 21:33:41.283: [INFO] BookmarksSnapshot Shutdown total=18 bar=7 other=0 mobile=0 showBar=1 showBarNTP=0
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,3 +1,3 @@
|
|||||||
2026/08/05-21:31:02.266 2bf0 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\shared_proto_db/MANIFEST-000001
|
2026/08/11-23:31:46.007 577c Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\shared_proto_db/MANIFEST-000001
|
||||||
2026/08/05-21:31:02.267 2bf0 Recovering log #3
|
2026/08/11-23:31:46.008 577c Recovering log #3
|
||||||
2026/08/05-21:31:02.267 2bf0 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\shared_proto_db/000003.log
|
2026/08/11-23:31:46.008 577c Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\shared_proto_db/000003.log
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
2026/08/04-22:51:52.306 2454 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\shared_proto_db/MANIFEST-000001
|
2026/08/10-22:38:48.331 1740 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\shared_proto_db/MANIFEST-000001
|
||||||
2026/08/04-22:51:52.307 2454 Recovering log #3
|
2026/08/10-22:38:48.332 1740 Recovering log #3
|
||||||
2026/08/04-22:51:52.307 2454 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\shared_proto_db/000003.log
|
2026/08/10-22:38:48.333 1740 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\shared_proto_db/000003.log
|
||||||
|
|||||||
Binary file not shown.
@@ -1,3 +1,3 @@
|
|||||||
2026/08/05-21:31:02.254 2bf0 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\shared_proto_db\metadata/MANIFEST-000001
|
2026/08/11-23:31:45.998 577c Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\shared_proto_db\metadata/MANIFEST-000001
|
||||||
2026/08/05-21:31:02.255 2bf0 Recovering log #3
|
2026/08/11-23:31:45.999 577c Recovering log #3
|
||||||
2026/08/05-21:31:02.256 2bf0 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.2993d3\flutter_tools_chrome_device.c2da8a67\Default\shared_proto_db\metadata/000003.log
|
2026/08/11-23:31:45.999 577c Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.563f49b\flutter_tools_chrome_device.9d15186e\Default\shared_proto_db\metadata/000003.log
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
2026/08/04-22:51:52.298 2454 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\shared_proto_db\metadata/MANIFEST-000001
|
2026/08/10-22:38:48.326 1740 Reusing MANIFEST C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\shared_proto_db\metadata/MANIFEST-000001
|
||||||
2026/08/04-22:51:52.298 2454 Recovering log #3
|
2026/08/10-22:38:48.327 1740 Recovering log #3
|
||||||
2026/08/04-22:51:52.299 2454 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.20e8229a\flutter_tools_chrome_device.7d5ee104\Default\shared_proto_db\metadata/000003.log
|
2026/08/10-22:38:48.327 1740 Reusing old log C:\Users\larsh\AppData\Local\Temp\flutter_tools.ccaa1042\flutter_tools_chrome_device.9ad653a1\Default\shared_proto_db\metadata/000003.log
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
Last acquired by C:\Users\larsh\Documents\flutter\bin\cache\dart-sdk\bin\dart.exe (pid 27684) running file:///C:/Users/larsh/Documents/flutter/bin/cache/flutter_tools.snapshot on 2026-08-06 17:59:35.953035.
|
Last acquired by C:\Users\larsh\Documents\flutter\bin\cache\dart-sdk\bin\dart.exe (pid 7632) running file:///C:/Users/larsh/Documents/flutter/bin/cache/flutter_tools.snapshot on 2026-08-12 17:28:01.442185.
|
||||||
@@ -1 +1 @@
|
|||||||
Last acquired by C:\Users\larsh\Documents\flutter\bin\cache\dart-sdk\bin\dart.exe (pid 27684) running file:///C:/Users/larsh/Documents/flutter/bin/cache/flutter_tools.snapshot on 2026-08-06 17:59:35.952538.
|
Last acquired by C:\Users\larsh\Documents\flutter\bin\cache\dart-sdk\bin\dart.exe (pid 7632) running file:///C:/Users/larsh/Documents/flutter/bin/cache/flutter_tools.snapshot on 2026-08-12 17:28:01.441186.
|
||||||
Binary file not shown.
@@ -1,98 +0,0 @@
|
|||||||
import '../network/api_client.dart';
|
|
||||||
|
|
||||||
/// Asset utility helpers to map ISIN codes, symbols, and company names to logos and details.
|
|
||||||
class AssetUtils {
|
|
||||||
static final Map<String, String> _isinToNameMap = {
|
|
||||||
'US0378331005': 'Apple Inc.',
|
|
||||||
'US5949181045': 'Microsoft Corp.',
|
|
||||||
'US0231351067': 'Amazon.com Inc.',
|
|
||||||
'US67066G1040': 'NVIDIA Corp.',
|
|
||||||
'US88160R1014': 'Tesla Inc.',
|
|
||||||
'US02079K3059': 'Alphabet Inc.',
|
|
||||||
'US30303M1027': 'Meta Platforms',
|
|
||||||
'DE0007164600': 'SAP SE',
|
|
||||||
'DE0007236101': 'Siemens AG',
|
|
||||||
'DE0008469008': 'Allianz SE',
|
|
||||||
'FR0004125920': 'Amundi',
|
|
||||||
};
|
|
||||||
|
|
||||||
static final Map<String, String> _nameToIsinMap = {
|
|
||||||
'APPLE INC.': 'US0378331005',
|
|
||||||
'APPLE': 'US0378331005',
|
|
||||||
'MICROSOFT CORP.': 'US5949181045',
|
|
||||||
'MICROSOFT': 'US5949181045',
|
|
||||||
'AMAZON.COM INC.': 'US0231351067',
|
|
||||||
'AMAZON': 'US0231351067',
|
|
||||||
'NVIDIA CORP.': 'US67066G1040',
|
|
||||||
'NVIDIA': 'US67066G1040',
|
|
||||||
'TESLA INC.': 'US88160R1014',
|
|
||||||
'TESLA': 'US88160R1014',
|
|
||||||
'ALPHABET INC.': 'US02079K3059',
|
|
||||||
'ALPHABET': 'US02079K3059',
|
|
||||||
'META PLATFORMS': 'US30303M1027',
|
|
||||||
'META': 'US30303M1027',
|
|
||||||
'SAP SE': 'DE0007164600',
|
|
||||||
'SAP': 'DE0007164600',
|
|
||||||
'SIEMENS AG': 'DE0007236101',
|
|
||||||
'SIEMENS': 'DE0007236101',
|
|
||||||
'ALLIANZ SE': 'DE0008469008',
|
|
||||||
'ALLIANZ': 'DE0008469008',
|
|
||||||
'AMUNDI': 'FR0004125920',
|
|
||||||
};
|
|
||||||
|
|
||||||
static final Map<String, String> _imageMap = {};
|
|
||||||
|
|
||||||
/// Registers an ISIN, Name, and optional Logo Image URL.
|
|
||||||
static void registerAsset(String isin, String name, [String? imageUrl]) {
|
|
||||||
final cleanIsin = isin.trim().toUpperCase();
|
|
||||||
final cleanName = name.trim();
|
|
||||||
if (cleanIsin.isNotEmpty && cleanName.isNotEmpty) {
|
|
||||||
_isinToNameMap[cleanIsin] = cleanName;
|
|
||||||
_nameToIsinMap[cleanName.toUpperCase()] = cleanIsin;
|
|
||||||
}
|
|
||||||
if (imageUrl != null && imageUrl.isNotEmpty) {
|
|
||||||
final resolved = resolveUrl(imageUrl);
|
|
||||||
if (cleanIsin.isNotEmpty) _imageMap[cleanIsin] = resolved;
|
|
||||||
if (cleanName.isNotEmpty) _imageMap[cleanName.toUpperCase()] = resolved;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Resolves relative logo URLs (/api/logo/...) to complete backend endpoints.
|
|
||||||
static String resolveUrl(String url) {
|
|
||||||
if (url.startsWith('http://') || url.startsWith('https://')) {
|
|
||||||
return url;
|
|
||||||
}
|
|
||||||
if (url.startsWith('/')) {
|
|
||||||
return '${ApiClient.baseUrl}$url';
|
|
||||||
}
|
|
||||||
return '${ApiClient.baseUrl}/$url';
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Resolves an ISIN or symbol to readable asset name.
|
|
||||||
static String getAssetName(String isinOrSymbol) {
|
|
||||||
final key = isinOrSymbol.trim().toUpperCase();
|
|
||||||
if (_isinToNameMap.containsKey(key)) {
|
|
||||||
return _isinToNameMap[key]!;
|
|
||||||
}
|
|
||||||
return isinOrSymbol;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Resolves an asset name or symbol to ISIN.
|
|
||||||
static String? getIsin(String nameOrSymbol) {
|
|
||||||
final key = nameOrSymbol.trim().toUpperCase();
|
|
||||||
if (_isinToNameMap.containsKey(key)) return key;
|
|
||||||
return _nameToIsinMap[key];
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Returns official local backend logo URL for given symbol/name/ISIN.
|
|
||||||
static String? getLogoUrl(String symbolOrName) {
|
|
||||||
final key = symbolOrName.trim().toUpperCase();
|
|
||||||
if (_imageMap.containsKey(key)) return resolveUrl(_imageMap[key]!);
|
|
||||||
|
|
||||||
final isin = getIsin(key) ?? (key.length == 12 ? key : null);
|
|
||||||
if (isin != null && isin.length == 12) {
|
|
||||||
return '${ApiClient.baseUrl}/api/logo/$isin';
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_svg/flutter_svg.dart';
|
import 'package:flutter_svg/flutter_svg.dart';
|
||||||
|
import '../network/api_client.dart';
|
||||||
import '../theme/app_theme.dart';
|
import '../theme/app_theme.dart';
|
||||||
import '../utils/asset_utils.dart';
|
|
||||||
|
|
||||||
/// Reusable performance-optimized Asset Logo Widget supporting SVG, PNG, gradient fallbacks, and Hero transitions.
|
/// Reusable performance-optimized Asset Logo Widget supporting SVG, PNG, gradient fallbacks, and Hero transitions.
|
||||||
class AssetLogoWidget extends StatelessWidget {
|
class AssetLogoWidget extends StatelessWidget {
|
||||||
@@ -15,24 +15,29 @@ class AssetLogoWidget extends StatelessWidget {
|
|||||||
const AssetLogoWidget({
|
const AssetLogoWidget({
|
||||||
super.key,
|
super.key,
|
||||||
required this.symbolOrName,
|
required this.symbolOrName,
|
||||||
this.imageUrl,
|
required this.imageUrl,
|
||||||
this.size = 32,
|
this.size = 32,
|
||||||
this.enableHero = true,
|
this.enableHero = true,
|
||||||
});
|
});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final rawUrl = imageUrl ?? AssetUtils.getLogoUrl(symbolOrName);
|
// Resolve relative URLs (e.g. /api/v1/logo/...) to include host and port (e.g. http://localhost:5000)
|
||||||
final logoUrl = rawUrl != null && rawUrl.isNotEmpty ? AssetUtils.resolveUrl(rawUrl) : null;
|
String? resolveUrl(String? url) {
|
||||||
|
if (url == null || url.isEmpty) return null;
|
||||||
|
if (url.startsWith('http://') || url.startsWith('https://')) return url;
|
||||||
|
return url.startsWith('/') ? '${ApiClient.baseUrl}$url' : '${ApiClient.baseUrl}/$url';
|
||||||
|
}
|
||||||
|
|
||||||
|
final image = resolveUrl(imageUrl);
|
||||||
final initial = symbolOrName.isNotEmpty ? symbolOrName[0].toUpperCase() : 'A';
|
final initial = symbolOrName.isNotEmpty ? symbolOrName[0].toUpperCase() : 'A';
|
||||||
final colors = _getGradientColors(initial);
|
final colors = _getGradientColors(initial);
|
||||||
|
|
||||||
Widget content;
|
Widget content;
|
||||||
|
|
||||||
if (logoUrl != null && logoUrl.isNotEmpty && !_failedUrls.contains(logoUrl)) {
|
if (image != null && image.isNotEmpty && !_failedUrls.contains(image)) {
|
||||||
final isSvg = logoUrl.toLowerCase().endsWith('.svg') ||
|
final isSvg = image.toLowerCase().endsWith('.svg') ||
|
||||||
logoUrl.contains('traderepublic.com') ||
|
image.contains('/api/v1/logo/');
|
||||||
logoUrl.contains('/api/logo/');
|
|
||||||
|
|
||||||
content = ClipRRect(
|
content = ClipRRect(
|
||||||
borderRadius: BorderRadius.circular(size * 0.3),
|
borderRadius: BorderRadius.circular(size * 0.3),
|
||||||
@@ -50,26 +55,26 @@ class AssetLogoWidget extends StatelessWidget {
|
|||||||
padding: EdgeInsets.all(size * 0.1),
|
padding: EdgeInsets.all(size * 0.1),
|
||||||
child: isSvg
|
child: isSvg
|
||||||
? SvgPicture.network(
|
? SvgPicture.network(
|
||||||
logoUrl,
|
image,
|
||||||
width: size,
|
width: size,
|
||||||
height: size,
|
height: size,
|
||||||
fit: BoxFit.contain,
|
fit: BoxFit.contain,
|
||||||
placeholderBuilder: (context) => _buildFallback(initial, colors),
|
placeholderBuilder: (context) => _buildFallback(initial, colors),
|
||||||
errorBuilder: (context, error, stackTrace) {
|
errorBuilder: (context, error, stackTrace) {
|
||||||
_failedUrls.add(logoUrl);
|
_failedUrls.add(image);
|
||||||
return _buildFallback(initial, colors);
|
return _buildFallback(initial, colors);
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
: Image.network(
|
: Image.network(
|
||||||
logoUrl,
|
image,
|
||||||
width: size,
|
width: size,
|
||||||
height: size,
|
height: size,
|
||||||
fit: BoxFit.contain,
|
fit: BoxFit.contain,
|
||||||
errorBuilder: (context, error, stackTrace) {
|
errorBuilder: (context, error, stackTrace) {
|
||||||
_failedUrls.add(logoUrl);
|
_failedUrls.add(image);
|
||||||
return _buildFallback(initial, colors);
|
return _buildFallback(initial, colors);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
@@ -78,7 +83,7 @@ class AssetLogoWidget extends StatelessWidget {
|
|||||||
|
|
||||||
if (enableHero && symbolOrName.isNotEmpty) {
|
if (enableHero && symbolOrName.isNotEmpty) {
|
||||||
return Hero(
|
return Hero(
|
||||||
tag: 'asset_logo_$symbolOrName',
|
tag: 'asset_logo_${symbolOrName}_$size',
|
||||||
child: content,
|
child: content,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -127,4 +132,4 @@ class AssetLogoWidget extends StatelessWidget {
|
|||||||
return [AppTheme.activePreset.accentColor, const Color(0xFF3B82F6)];
|
return [AppTheme.activePreset.accentColor, const Color(0xFF3B82F6)];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
import 'dart:async';
|
|
||||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
||||||
import 'package:finlytic_app/features/asset_detail/repositories/asset_repository.dart';
|
|
||||||
import 'asset_detail_event.dart';
|
|
||||||
import 'asset_detail_state.dart';
|
|
||||||
|
|
||||||
class AssetDetailBloc extends Bloc<AssetDetailEvent, AssetDetailState> {
|
|
||||||
final AssetRepository repository;
|
|
||||||
|
|
||||||
AssetDetailBloc({required this.repository}) : super(AssetDetailInitial()) {
|
|
||||||
on<LoadAssetData>(_onLoadAssetData);
|
|
||||||
on<ForceRefreshAssetData>(_onForceRefreshAssetData);
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> _onLoadAssetData(LoadAssetData event, Emitter<AssetDetailState> emit) async {
|
|
||||||
emit(AssetDetailLoading());
|
|
||||||
try {
|
|
||||||
final results = await Future.wait([
|
|
||||||
repository.getFundamentalData(event.symbol),
|
|
||||||
repository.getTechnicalAnalysis(event.symbol),
|
|
||||||
]);
|
|
||||||
|
|
||||||
emit(AssetDetailLoaded(
|
|
||||||
fundamentalData: results[0] as dynamic,
|
|
||||||
technicalAnalysis: results[1] as dynamic,
|
|
||||||
));
|
|
||||||
} catch (e) {
|
|
||||||
emit(AssetDetailError("Fehler beim Laden der Asset-Daten."));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> _onForceRefreshAssetData(ForceRefreshAssetData event, Emitter<AssetDetailState> emit) async {
|
|
||||||
try {
|
|
||||||
await repository.forceRefreshFundamentalData(event.symbol);
|
|
||||||
// Optional: re-load after a delay, or rely on MQTT/SignalR to push the new data.
|
|
||||||
} catch (e) {
|
|
||||||
// ignore
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user