Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Codecool.CodecoolShop/Controllers/AddressController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public IActionResult Index()
return View();
}

_logger.LogInformation($"Address page tried to view on {DateTime.Now}");
_logger.LogInformation($"Address page tried to view on {DateTime.Now}"); //Data uzalezniona od lokalnej daty serwera. To blad lepiej uzywac po prostu polskiej daty zawsze lub utc.
return RedirectToAction("Index", "Product");
}

Expand Down Expand Up @@ -97,4 +97,4 @@ private bool CartIsNotEmpty()

return cart;
}
}
}