Skip to content

Commit 96e31f7

Browse files
committed
chore: update TiledVAE settings and adjust logging level
- Added/updated TiledVAE-related settings in Settings.cs - Replaced LogWarning with LogDebug in TiledVAEModule for non-critical tracing - Ensures cleaner production logs and consistent configuration handling
1 parent acf9c99 commit 96e31f7

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

StabilityMatrix.Avalonia/ViewModels/Inference/Modules/TiledVAEModule.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,11 @@ protected override void OnApplyStep(ModuleApplyStepEventArgs e)
3434
var latent = builder.Connections.Primary.AsT0;
3535
var vae = builder.Connections.GetDefaultVAE();
3636

37-
logger.LogWarning("TiledVAE: Injecting TiledVAEDecode");
38-
logger.LogWarning("UseCustomTemporalTiling value at runtime: {Value}", card.UseCustomTemporalTiling);
37+
logger.LogDebug("TiledVAE: Injecting TiledVAEDecode");
38+
logger.LogDebug(
39+
"UseCustomTemporalTiling value at runtime: {value}",
40+
card.UseCustomTemporalTiling
41+
);
3942

4043
// Always valid values (Wan requires temporal tiling)
4144
int temporalSize = card.UseCustomTemporalTiling ? card.TemporalSize : 64;
@@ -50,7 +53,7 @@ protected override void OnApplyStep(ModuleApplyStepEventArgs e)
5053
TileSize = card.TileSize,
5154
Overlap = card.Overlap,
5255
TemporalSize = card.TemporalSize,
53-
TemporalOverlap = card.TemporalOverlap
56+
TemporalOverlap = card.TemporalOverlap,
5457
}
5558
);
5659

StabilityMatrix.Core/Models/Settings/Settings.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ public InstalledPackage? PreferredWorkflowPackage
100100
/// </summary>
101101
public bool IsCompletionRemoveUnderscoresEnabled { get; set; } = true;
102102

103-
/// COPILOT
103+
/// NEW
104104
public bool EnableTiledVae { get; set; } = false;
105-
105+
106106
/// <summary>
107107
/// Format for Inference output image file names
108108
/// </summary>

0 commit comments

Comments
 (0)