# Outputting URLs in Console Logging Adds Semicolon

**URL:** https://discuss.hangfire.io/t/outputting-urls-in-console-logging-adds-semicolon/10601
**Category:** question
**Tags:** dashboard, logging
**Created:** [April 8, 2024, 9:05pm UTC](https://discuss.hangfire.io/t/outputting-urls-in-console-logging-adds-semicolon/10601 "2024-04-08T21:05:04Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![MFonnesbeck](https://avatars.discourse-cdn.com/v4/letter/m/b19c9b/32.png) [@MFonnesbeck](https://discuss.hangfire.io/u/MFonnesbeck)
#### Post date: [April 8, 2024, 9:05pm UTC](https://discuss.hangfire.io/t/outputting-urls-in-console-logging-adds-semicolon/10601/1 "2024-04-08T21:05:04Z")

</div>

Hello,

I have several jobs that build or save out files to Azure storage and then I provide a URL to the file so that staff can download the file or access the file for use. What I have noticed is that logging a URL to the console output adds a semicolon after the first parameter, which then changes the URL and it is no longer clickable or copy and paste-able in a browser window to open or download the file.

For example the URL:  
[https://staffprod.blob.core.windows.net/files/TransactionList\_2024.03.20.csv?sv=2017-04-17&sr=b&sig=y9BmYnTdAmPrCRdqxst&sp=r](https://staffprod.blob.core.windows.net/files/TransactionList_2024.03.20.csv?sv=2017-04-17&sr=b&sig=y9BmYnTdAmPrCRdqxst&sp=r)

Would be output:  
[https://staffprod.blob.core.windows.net/files/TransactionList\_2024.03.20.csv?sv=2017-04-17&;sr=b&sig=y9BmYnTdAmPrCRdqxst&sp=r](https://staffprod.blob.core.windows.net/files/TransactionList_2024.03.20.csv?sv=2017-04-17&;sr=b&sig=y9BmYnTdAmPrCRdqxst&sp=r)

There is a semicolon added after the first parameter sv and its separation character & and before the next parameter sr.

Has anyone experienced this or know how to stop this from having. I am just writing the string in a message using the PerformContext object’s WriteLine( ) method provided by Hangfire.

Thanks.
