Skip to content

Commit

Permalink
Add logging statements (to remove later)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-vakil committed Jul 18, 2024
1 parent 6f70eaa commit 9633c1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Opserver.Web/Controllers/AuthController.OIDC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ private IActionResult RedirectToProvider(string returnUrl)
.Add("nonce", Guid.NewGuid().ToString("N"));

authorizationUrl.Query = queryString.ToUriComponent();
Console.WriteLine($"Redirecting to {authorizationUrl}");

return Redirect(authorizationUrl.ToString());
}
Expand Down
1 change: 1 addition & 0 deletions src/Opserver.Web/Controllers/HomeController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ HAProxyModule haproxy
[DefaultRoute("")]
public ActionResult Home()
{
Console.WriteLine("Home Page loaded");
// TODO: Order
foreach (var m in Modules)
{
Expand Down

0 comments on commit 9633c1a

Please sign in to comment.