Skip to content

Commit

Permalink
Fix SEQ target (#97)
Browse files Browse the repository at this point in the history
* SEQ: fix url when ApiKey is used (#96)

Co-authored-by: gahujipo <26710574+gahujipo@users.noreply.github.com>
  • Loading branch information
EsOsO and gahujipo authored May 28, 2020
1 parent ccb5355 commit cc8e532
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Logging/targets/Seq.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}

if ($Configuration.ApiKey) {
$Url = '{0}/api/events/raw?apiKey={1}' -f $configration.Url, $Configuration.ApiKey
$Url = '{0}/api/events/raw?apiKey={1}' -f $Configuration.Url, $Configuration.ApiKey
} else {
$Url = '{0}/api/events/raw?' -f $Configuration.Url
}
Expand Down
2 changes: 2 additions & 0 deletions docs/RELEASE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

- [FIX] SEQ: fix url when ApiKey is used (#96) (@gahujipo)

0 comments on commit cc8e532

Please sign in to comment.