From e85ab0431f3a61b8f8f080ddd708b87607486318 Mon Sep 17 00:00:00 2001
From: Manuel Thalmann <m@nuth.ch>
Date: Fri, 9 Aug 2024 01:22:51 +0200
Subject: [PATCH] Remove unnecessary console output

---
 scripts/Windows/Scripts/AppAssociations.ps1 | 1 -
 1 file changed, 1 deletion(-)

diff --git a/scripts/Windows/Scripts/AppAssociations.ps1 b/scripts/Windows/Scripts/AppAssociations.ps1
index dae933e0..ba08d6de 100644
--- a/scripts/Windows/Scripts/AppAssociations.ps1
+++ b/scripts/Windows/Scripts/AppAssociations.ps1
@@ -61,7 +61,6 @@ $null = New-Module {
         [System.Xml.XmlNode] $association = $null;
         $document = Get-DefaultAppAssociations;
         $candidates = $document.SelectNodes((& $getSelector $Identifier));
-        Write-Host "Number of potential associations: $($candidates.Count)"
 
         if ($candidates.Count -eq 1) {
             $association = $candidates[0];