Skip to content

Commit

Permalink
Fix verbose logs not being accessible
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed Nov 14, 2024
1 parent 53069bf commit b0dd643
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/UniGetUI/Pages/LogPages/ManagerLogsPage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ public ManagerLogsPage() : base(true)

public void LoadForManager(PackageManager manager)
{
SelectLogLevelByName(manager.DisplayName);

bool IS_DARK = ActualTheme == Microsoft.UI.Xaml.ElementTheme.Dark;
bool verbose = LogLevelCombo.SelectedValue?.ToString()?.Contains(CoreTools.Translate("Verbose")) ?? false;

if(!verbose) SelectLogLevelByName(manager.DisplayName);

IManagerLogger TaskLogger = manager.TaskLogger;
LogTextBox.Blocks.Clear();
Paragraph versionParagraph = new();
Expand Down

0 comments on commit b0dd643

Please sign in to comment.