Skip to content

Commit a5c6cf6

Browse files
committed
Remove debug Console.WriteLine statements
1 parent b90564c commit a5c6cf6

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

PreMailer.Net/PreMailer.Net/Sources/LinkTagCssSource.cs

-5
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ public LinkTagCssSource(IElement node, Uri baseUri, ImportRuleCssSource importRu
3636

3737
public IEnumerable<string> GetCss()
3838
{
39-
Console.WriteLine($"GetCss scheme: {_downloadUri.Scheme}");
40-
4139
if (IsSupported(_downloadUri.Scheme))
4240
{
4341
return _cssContents ?? DownloadContents();
@@ -52,13 +50,10 @@ private List<string> DownloadContents()
5250

5351
try
5452
{
55-
Console.WriteLine($"Will download from '{_downloadUri}' using {WebDownloader.SharedDownloader.GetType()}");
56-
5753
content = WebDownloader.SharedDownloader.DownloadString(_downloadUri);
5854
}
5955
catch (WebException ex)
6056
{
61-
Console.WriteLine($"Download failed with: {ex}");
6257
throw new WebException($"PreMailer.Net is unable to download the requested URL: {_downloadUri}", ex);
6358
}
6459

0 commit comments

Comments
 (0)