Initial commit AB#12

This commit is contained in:
Noah Spannbauer
2023-01-24 20:03:13 -06:00
commit c2d8bd1838
91 changed files with 29613 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
2022-12-31 11:26:01.898 -06:00 [DBG] Registered model binder providers, in the following order: ["Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BinderTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ServicesModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BodyModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.HeaderModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FloatingPointTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.EnumTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.DateTimeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.SimpleTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CancellationTokenModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ByteArrayModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FormFileModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FormCollectionModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.KeyValuePairModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.DictionaryModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ArrayModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CollectionModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexObjectModelBinderProvider"]
2022-12-31 11:26:01.958 -06:00 [DBG] Hosting starting
2022-12-31 11:26:02.064 -06:00 [DBG] Using development certificate: CN=localhost (Thumbprint: D1AC045DA5B402C2D2761887E1B189C128A0E6AE)
2022-12-31 11:26:02.230 -06:00 [INF] Now listening on: https://localhost:7103
2022-12-31 11:26:02.230 -06:00 [INF] Now listening on: http://localhost:5106
2022-12-31 11:26:02.230 -06:00 [DBG] Loaded hosting startup assembly Venues
2022-12-31 11:26:02.230 -06:00 [INF] Application started. Press Ctrl+C to shut down.
2022-12-31 11:26:02.230 -06:00 [INF] Hosting environment: Development
2022-12-31 11:26:02.230 -06:00 [INF] Content root path: /Users/noahspannbauer/Developer/Work/mlb-game-day/Venues/
2022-12-31 11:26:02.230 -06:00 [DBG] Hosting started
2022-12-31 11:26:02.241 -06:00 [DBG] Connection id "0HMNBAGBGBQU1" accepted.
2022-12-31 11:26:02.242 -06:00 [DBG] Connection id "0HMNBAGBGBQU1" started.
2022-12-31 11:26:03.124 -06:00 [DBG] Connection id "0HMNBAGBGBQU1" received FIN.
2022-12-31 11:26:03.131 -06:00 [DBG] Failed to authenticate HTTPS connection.
System.IO.IOException: Received an unexpected EOF or 0 bytes from the transport stream.
at System.Net.Security.SslStream.<FillHandshakeBufferAsync>g__InternalFillHandshakeBufferAsync|189_0[TIOAdapter](TIOAdapter adap, ValueTask`1 task, Int32 minSize)
at System.Net.Security.SslStream.ReceiveBlobAsync[TIOAdapter](TIOAdapter adapter)
at System.Net.Security.SslStream.ForceAuthenticationAsync[TIOAdapter](TIOAdapter adapter, Boolean receiveFirst, Byte[] reAuthenticationData, Boolean isApm)
at Microsoft.AspNetCore.Server.Kestrel.Https.Internal.HttpsConnectionMiddleware.OnConnectionAsync(ConnectionContext context)
2022-12-31 11:26:03.164 -06:00 [DBG] Connection id "0HMNBAGBGBQU1" stopped.
2022-12-31 11:26:03.168 -06:00 [DBG] Connection id "0HMNBAGBGBQU1" sending FIN because: "The Socket transport's send loop completed gracefully."
2022-12-31 11:26:03.181 -06:00 [DBG] Connection id "0HMNBAGBGBQU2" accepted.
2022-12-31 11:26:03.181 -06:00 [DBG] Connection id "0HMNBAGBGBQU2" started.
2022-12-31 11:26:03.236 -06:00 [DBG] Connection 0HMNBAGBGBQU2 established using the following protocol: "Tls12"
2022-12-31 11:26:03.282 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/swagger/index.html - -
2022-12-31 11:26:03.283 -06:00 [DBG] Wildcard detected, all requests with hosts will be allowed.
2022-12-31 11:26:03.335 -06:00 [DBG] Connection id "0HMNBAGBGBQU2" completed keep alive response.
2022-12-31 11:26:03.336 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/swagger/index.html - - - 200 - text/html;charset=utf-8 55.8462ms
2022-12-31 11:26:03.442 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/swagger/v1/swagger.json - -
2022-12-31 11:26:03.527 -06:00 [DBG] Connection id "0HMNBAGBGBQU2" completed keep alive response.
2022-12-31 11:26:03.527 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 85.3100ms
2022-12-31 11:27:01.605 -06:00 [DBG] Connection id "0HMNBAGBGBQU2" received FIN.
2022-12-31 11:27:01.708 -06:00 [DBG] Connection id "0HMNBAGBGBQU2" sending FIN because: "The client closed the connection."
2022-12-31 11:27:01.709 -06:00 [DBG] Connection id "0HMNBAGBGBQU2" disconnecting.
2022-12-31 11:27:01.712 -06:00 [DBG] Connection id "0HMNBAGBGBQU2" stopped.

View File

@@ -0,0 +1,512 @@
2023-01-02 10:10:27.795 -06:00 [DBG] Registered model binder providers, in the following order: ["Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BinderTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ServicesModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BodyModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.HeaderModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FloatingPointTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.EnumTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.DateTimeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.SimpleTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CancellationTokenModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ByteArrayModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FormFileModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FormCollectionModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.KeyValuePairModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.DictionaryModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ArrayModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CollectionModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexObjectModelBinderProvider"]
2023-01-02 10:10:27.857 -06:00 [DBG] Hosting starting
2023-01-02 10:10:27.975 -06:00 [DBG] Using development certificate: CN=localhost (Thumbprint: D1AC045DA5B402C2D2761887E1B189C128A0E6AE)
2023-01-02 10:10:28.065 -06:00 [INF] Now listening on: https://localhost:7103
2023-01-02 10:10:28.065 -06:00 [INF] Now listening on: http://localhost:5106
2023-01-02 10:10:28.065 -06:00 [DBG] Loaded hosting startup assembly Venues
2023-01-02 10:10:28.066 -06:00 [INF] Application started. Press Ctrl+C to shut down.
2023-01-02 10:10:28.066 -06:00 [INF] Hosting environment: Development
2023-01-02 10:10:28.066 -06:00 [INF] Content root path: /Users/noahspannbauer/Developer/Work/mlb-game-day/Venues/
2023-01-02 10:10:28.066 -06:00 [DBG] Hosting started
2023-01-02 10:10:28.073 -06:00 [DBG] Connection id "0HMNCRFEKCP0T" accepted.
2023-01-02 10:10:28.074 -06:00 [DBG] Connection id "0HMNCRFEKCP0T" started.
2023-01-02 10:10:29.035 -06:00 [DBG] Connection id "0HMNCRFEKCP0T" received FIN.
2023-01-02 10:10:29.057 -06:00 [DBG] Failed to authenticate HTTPS connection.
System.IO.IOException: Received an unexpected EOF or 0 bytes from the transport stream.
at System.Net.Security.SslStream.<FillHandshakeBufferAsync>g__InternalFillHandshakeBufferAsync|189_0[TIOAdapter](TIOAdapter adap, ValueTask`1 task, Int32 minSize)
at System.Net.Security.SslStream.ReceiveBlobAsync[TIOAdapter](TIOAdapter adapter)
at System.Net.Security.SslStream.ForceAuthenticationAsync[TIOAdapter](TIOAdapter adapter, Boolean receiveFirst, Byte[] reAuthenticationData, Boolean isApm)
at Microsoft.AspNetCore.Server.Kestrel.Https.Internal.HttpsConnectionMiddleware.OnConnectionAsync(ConnectionContext context)
2023-01-02 10:10:29.115 -06:00 [DBG] Connection id "0HMNCRFEKCP0T" stopped.
2023-01-02 10:10:29.118 -06:00 [DBG] Connection id "0HMNCRFEKCP0T" sending FIN because: "The Socket transport's send loop completed gracefully."
2023-01-02 10:10:29.203 -06:00 [DBG] Connection id "0HMNCRFEKCP0U" accepted.
2023-01-02 10:10:29.204 -06:00 [DBG] Connection id "0HMNCRFEKCP0U" started.
2023-01-02 10:10:29.258 -06:00 [DBG] Connection 0HMNCRFEKCP0U established using the following protocol: "Tls12"
2023-01-02 10:10:29.354 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/swagger/index.html - -
2023-01-02 10:10:29.355 -06:00 [DBG] Wildcard detected, all requests with hosts will be allowed.
2023-01-02 10:10:29.411 -06:00 [DBG] Connection id "0HMNCRFEKCP0U" completed keep alive response.
2023-01-02 10:10:29.412 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/swagger/index.html - - - 200 - text/html;charset=utf-8 59.4324ms
2023-01-02 10:10:29.524 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/swagger/v1/swagger.json - -
2023-01-02 10:10:29.561 -06:00 [DBG] Connection id "0HMNCRFEKCP0V" accepted.
2023-01-02 10:10:29.561 -06:00 [DBG] Connection id "0HMNCRFEKCP0V" started.
2023-01-02 10:10:29.586 -06:00 [DBG] Connection 0HMNCRFEKCP0V established using the following protocol: "Tls12"
2023-01-02 10:10:29.610 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/swagger/favicon-16x16.png - -
2023-01-02 10:10:29.615 -06:00 [INF] Sending file. Request path: '/favicon-16x16.png'. Physical path: 'N/A'
2023-01-02 10:10:29.615 -06:00 [DBG] Connection id "0HMNCRFEKCP0V" completed keep alive response.
2023-01-02 10:10:29.615 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/swagger/favicon-16x16.png - - - 200 665 image/png 4.5685ms
2023-01-02 10:10:29.638 -06:00 [DBG] Connection id "0HMNCRFEKCP0U" completed keep alive response.
2023-01-02 10:10:29.638 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 114.4893ms
2023-01-02 10:10:33.869 -06:00 [DBG] Connection id "0HMNCRFEKCP10" received FIN.
2023-01-02 10:10:33.870 -06:00 [DBG] Connection id "0HMNCRFEKCP10" accepted.
2023-01-02 10:10:33.870 -06:00 [DBG] Connection id "0HMNCRFEKCP10" started.
2023-01-02 10:10:33.870 -06:00 [DBG] Connection id "0HMNCRFEKCP11" accepted.
2023-01-02 10:10:33.897 -06:00 [DBG] Connection id "0HMNCRFEKCP11" started.
2023-01-02 10:10:33.871 -06:00 [DBG] Failed to authenticate HTTPS connection.
System.IO.IOException: Received an unexpected EOF or 0 bytes from the transport stream.
at System.Net.Security.SslStream.ReceiveBlobAsync[TIOAdapter](TIOAdapter adapter)
at System.Net.Security.SslStream.ForceAuthenticationAsync[TIOAdapter](TIOAdapter adapter, Boolean receiveFirst, Byte[] reAuthenticationData, Boolean isApm)
at Microsoft.AspNetCore.Server.Kestrel.Https.Internal.HttpsConnectionMiddleware.OnConnectionAsync(ConnectionContext context)
2023-01-02 10:10:33.926 -06:00 [DBG] Connection id "0HMNCRFEKCP10" stopped.
2023-01-02 10:10:33.929 -06:00 [DBG] Connection id "0HMNCRFEKCP10" sending FIN because: "The Socket transport's send loop completed gracefully."
2023-01-02 10:10:33.956 -06:00 [DBG] Connection 0HMNCRFEKCP11 established using the following protocol: "Tls12"
2023-01-02 10:10:33.960 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/api/venues - -
2023-01-02 10:10:33.961 -06:00 [DBG] The request path does not match the path filter
2023-01-02 10:10:33.977 -06:00 [DBG] 1 candidate(s) found for the request path '/api/venues'
2023-01-02 10:10:33.981 -06:00 [DBG] Endpoint 'Venues.Controllers.VenuesController.GetVenues (Venues)' with route pattern 'api/venues' is valid for the request path '/api/venues'
2023-01-02 10:10:33.981 -06:00 [DBG] Request matched endpoint 'Venues.Controllers.VenuesController.GetVenues (Venues)'
2023-01-02 10:10:33.983 -06:00 [INF] Executing endpoint 'Venues.Controllers.VenuesController.GetVenues (Venues)'
2023-01-02 10:10:33.997 -06:00 [INF] Route matched with {action = "GetVenues", controller = "Venues"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.ActionResult`1[System.Collections.Generic.IEnumerable`1[Venues.Models.VenueDto]]] GetVenues() on controller Venues.Controllers.VenuesController (Venues).
2023-01-02 10:10:33.997 -06:00 [DBG] Execution plan of authorization filters (in the following order): ["None"]
2023-01-02 10:10:33.998 -06:00 [DBG] Execution plan of resource filters (in the following order): ["None"]
2023-01-02 10:10:33.998 -06:00 [DBG] Execution plan of action filters (in the following order): ["Microsoft.AspNetCore.Mvc.ModelBinding.UnsupportedContentTypeFilter (Order: -3000)","Microsoft.AspNetCore.Mvc.Infrastructure.ModelStateInvalidFilter (Order: -2000)"]
2023-01-02 10:10:33.998 -06:00 [DBG] Execution plan of exception filters (in the following order): ["None"]
2023-01-02 10:10:33.998 -06:00 [DBG] Execution plan of result filters (in the following order): ["Microsoft.AspNetCore.Mvc.Infrastructure.ClientErrorResultFilter (Order: -2000)"]
2023-01-02 10:10:33.998 -06:00 [DBG] Executing controller factory for controller Venues.Controllers.VenuesController (Venues)
2023-01-02 10:10:34.101 -06:00 [DBG] An 'IServiceProvider' was created for internal use by Entity Framework.
2023-01-02 10:10:34.117 -06:00 [DBG] Executed controller factory for controller Venues.Controllers.VenuesController (Venues)
2023-01-02 10:10:34.470 -06:00 [INF] Entity Framework Core 6.0.12 initialized 'MlbGameDayContext' using provider 'Npgsql.EntityFrameworkCore.PostgreSQL:6.0.8+e68dfe8b5cbe4a26d20acc36def6187aa1cfdda3' with options: None
2023-01-02 10:10:34.496 -06:00 [DBG] Compiling query expression:
'DbSet<Venue>()
.OrderBy(v => v.Name)'
2023-01-02 10:10:34.657 -06:00 [DBG] Generated query execution expression:
'queryContext => new SingleQueryingEnumerable<Venue>(
(RelationalQueryContext)queryContext,
RelationalCommandCache.SelectExpression(
Projection Mapping:
EmptyProjectionMember -> Dictionary<IProperty, int> { [Property: Venue.Active (string), 0], [Property: Venue.Id (int?), 1], [Property: Venue.Link (string), 2], [Property: Venue.Name (string), 3] }
SELECT v.active, v.id, v.link, v.name
FROM venue AS v
ORDER BY v.name ASC),
Func<QueryContext, DbDataReader, ResultContext, SingleQueryResultCoordinator, Venue>,
Venues.DbContexts.MlbGameDayContext,
False,
False,
True
)'
2023-01-02 10:10:34.683 -06:00 [DBG] Creating DbCommand for 'ExecuteReader'.
2023-01-02 10:10:34.724 -06:00 [DBG] Created DbCommand for 'ExecuteReader' (40ms).
2023-01-02 10:10:34.730 -06:00 [DBG] Opening connection to database 'mlb-game-day' on server ''.
2023-01-02 10:10:34.873 -06:00 [DBG] Opened connection to database 'mlb-game-day' on server 'tcp://localhost:5432'.
2023-01-02 10:10:34.880 -06:00 [DBG] Executing DbCommand [Parameters=[], CommandType='"Text"', CommandTimeout='30']
SELECT v.active, v.id, v.link, v.name
FROM venue AS v
ORDER BY v.name
2023-01-02 10:10:34.929 -06:00 [INF] Executed DbCommand (49ms) [Parameters=[], CommandType='"Text"', CommandTimeout='30']
SELECT v.active, v.id, v.link, v.name
FROM venue AS v
ORDER BY v.name
2023-01-02 10:10:34.948 -06:00 [DBG] A data reader was disposed.
2023-01-02 10:10:34.953 -06:00 [DBG] Closing connection to database 'mlb-game-day' on server 'tcp://localhost:5432'.
2023-01-02 10:10:34.957 -06:00 [DBG] Closed connection to database 'mlb-game-day' on server ''.
2023-01-02 10:10:34.960 -06:00 [DBG] List of registered output formatters, in the following order: ["Microsoft.AspNetCore.Mvc.Formatters.HttpNoContentOutputFormatter","Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter","Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter","Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonOutputFormatter","Microsoft.AspNetCore.Mvc.Formatters.XmlDataContractSerializerOutputFormatter"]
2023-01-02 10:10:34.961 -06:00 [DBG] No information found on request to perform content negotiation.
2023-01-02 10:10:34.961 -06:00 [DBG] Attempting to select an output formatter without using a content type as no explicit content types were specified for the response.
2023-01-02 10:10:34.961 -06:00 [DBG] Attempting to select the first formatter in the output formatters list which can write the result.
2023-01-02 10:10:34.961 -06:00 [DBG] Selected output formatter 'Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonOutputFormatter' and content type 'application/json' to write the response.
2023-01-02 10:10:34.961 -06:00 [INF] Executing OkObjectResult, writing value of type 'System.Collections.Generic.List`1[[Venues.Models.VenueDto, Venues, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'.
2023-01-02 10:10:34.966 -06:00 [INF] Executed action Venues.Controllers.VenuesController.GetVenues (Venues) in 966.0274ms
2023-01-02 10:10:34.967 -06:00 [INF] Executed endpoint 'Venues.Controllers.VenuesController.GetVenues (Venues)'
2023-01-02 10:10:34.968 -06:00 [DBG] Connection id "0HMNCRFEKCP11" completed keep alive response.
2023-01-02 10:10:34.971 -06:00 [DBG] 'MlbGameDayContext' disposed.
2023-01-02 10:10:34.973 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/api/venues - - - 200 - application/json;+charset=utf-8 1012.9068ms
2023-01-02 10:10:59.826 -06:00 [DBG] Connection id "0HMNCRFEKCP0V" received FIN.
2023-01-02 10:10:59.826 -06:00 [DBG] Connection id "0HMNCRFEKCP0U" received FIN.
2023-01-02 10:10:59.857 -06:00 [DBG] Connection id "0HMNCRFEKCP0U" sending FIN because: "The client closed the connection."
2023-01-02 10:10:59.857 -06:00 [DBG] Connection id "0HMNCRFEKCP0V" sending FIN because: "The client closed the connection."
2023-01-02 10:10:59.858 -06:00 [DBG] Connection id "0HMNCRFEKCP0U" disconnecting.
2023-01-02 10:10:59.858 -06:00 [DBG] Connection id "0HMNCRFEKCP0V" disconnecting.
2023-01-02 10:10:59.861 -06:00 [DBG] Connection id "0HMNCRFEKCP0V" stopped.
2023-01-02 10:10:59.861 -06:00 [DBG] Connection id "0HMNCRFEKCP0U" stopped.
2023-01-02 10:21:41.325 -06:00 [DBG] Registered model binder providers, in the following order: ["Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BinderTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ServicesModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BodyModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.HeaderModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FloatingPointTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.EnumTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.DateTimeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.SimpleTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CancellationTokenModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ByteArrayModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FormFileModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FormCollectionModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.KeyValuePairModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.DictionaryModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ArrayModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CollectionModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexObjectModelBinderProvider"]
2023-01-02 10:21:41.377 -06:00 [DBG] Hosting starting
2023-01-02 10:21:41.462 -06:00 [DBG] Using development certificate: CN=localhost (Thumbprint: D1AC045DA5B402C2D2761887E1B189C128A0E6AE)
2023-01-02 10:21:41.576 -06:00 [INF] Now listening on: https://localhost:7103
2023-01-02 10:21:41.576 -06:00 [INF] Now listening on: http://localhost:5106
2023-01-02 10:21:41.576 -06:00 [DBG] Loaded hosting startup assembly Venues
2023-01-02 10:21:41.576 -06:00 [INF] Application started. Press Ctrl+C to shut down.
2023-01-02 10:21:41.576 -06:00 [INF] Hosting environment: Development
2023-01-02 10:21:41.577 -06:00 [INF] Content root path: /Users/noahspannbauer/Developer/Work/mlb-game-day/Venues/
2023-01-02 10:21:41.577 -06:00 [DBG] Hosting started
2023-01-02 10:21:41.582 -06:00 [DBG] Connection id "0HMNCRLNBFKOT" accepted.
2023-01-02 10:21:41.583 -06:00 [DBG] Connection id "0HMNCRLNBFKOT" started.
2023-01-02 10:21:42.495 -06:00 [DBG] Connection id "0HMNCRLNBFKOT" received FIN.
2023-01-02 10:21:42.509 -06:00 [DBG] Failed to authenticate HTTPS connection.
System.IO.IOException: Received an unexpected EOF or 0 bytes from the transport stream.
at System.Net.Security.SslStream.<FillHandshakeBufferAsync>g__InternalFillHandshakeBufferAsync|189_0[TIOAdapter](TIOAdapter adap, ValueTask`1 task, Int32 minSize)
at System.Net.Security.SslStream.ReceiveBlobAsync[TIOAdapter](TIOAdapter adapter)
at System.Net.Security.SslStream.ForceAuthenticationAsync[TIOAdapter](TIOAdapter adapter, Boolean receiveFirst, Byte[] reAuthenticationData, Boolean isApm)
at Microsoft.AspNetCore.Server.Kestrel.Https.Internal.HttpsConnectionMiddleware.OnConnectionAsync(ConnectionContext context)
2023-01-02 10:21:42.560 -06:00 [DBG] Connection id "0HMNCRLNBFKOT" stopped.
2023-01-02 10:21:42.563 -06:00 [DBG] Connection id "0HMNCRLNBFKOT" sending FIN because: "The Socket transport's send loop completed gracefully."
2023-01-02 10:21:42.630 -06:00 [DBG] Connection id "0HMNCRLNBFKOU" accepted.
2023-01-02 10:21:42.631 -06:00 [DBG] Connection id "0HMNCRLNBFKOU" started.
2023-01-02 10:21:42.693 -06:00 [DBG] Connection 0HMNCRLNBFKOU established using the following protocol: "Tls12"
2023-01-02 10:21:42.795 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/swagger/index.html - -
2023-01-02 10:21:42.796 -06:00 [DBG] Wildcard detected, all requests with hosts will be allowed.
2023-01-02 10:21:42.842 -06:00 [DBG] Connection id "0HMNCRLNBFKOU" completed keep alive response.
2023-01-02 10:21:42.843 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/swagger/index.html - - - 200 - text/html;charset=utf-8 49.5092ms
2023-01-02 10:21:42.945 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/swagger/v1/swagger.json - -
2023-01-02 10:21:43.012 -06:00 [DBG] Connection id "0HMNCRLNBFKOU" completed keep alive response.
2023-01-02 10:21:43.012 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 67.1338ms
2023-01-02 10:21:48.085 -06:00 [DBG] Connection id "0HMNCRLNBFKOV" received FIN.
2023-01-02 10:21:48.091 -06:00 [DBG] Connection id "0HMNCRLNBFKOV" accepted.
2023-01-02 10:21:48.093 -06:00 [DBG] Connection id "0HMNCRLNBFKOV" started.
2023-01-02 10:21:48.118 -06:00 [DBG] Connection id "0HMNCRLNBFKP0" accepted.
2023-01-02 10:21:48.119 -06:00 [DBG] Connection id "0HMNCRLNBFKP0" started.
2023-01-02 10:21:48.120 -06:00 [DBG] Failed to authenticate HTTPS connection.
System.IO.IOException: Received an unexpected EOF or 0 bytes from the transport stream.
at System.Net.Security.SslStream.ReceiveBlobAsync[TIOAdapter](TIOAdapter adapter)
at System.Net.Security.SslStream.ForceAuthenticationAsync[TIOAdapter](TIOAdapter adapter, Boolean receiveFirst, Byte[] reAuthenticationData, Boolean isApm)
at Microsoft.AspNetCore.Server.Kestrel.Https.Internal.HttpsConnectionMiddleware.OnConnectionAsync(ConnectionContext context)
2023-01-02 10:21:48.123 -06:00 [DBG] Connection id "0HMNCRLNBFKOV" stopped.
2023-01-02 10:21:48.124 -06:00 [DBG] Connection id "0HMNCRLNBFKOV" sending FIN because: "The Socket transport's send loop completed gracefully."
2023-01-02 10:21:48.151 -06:00 [DBG] Connection 0HMNCRLNBFKP0 established using the following protocol: "Tls12"
2023-01-02 10:21:48.165 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/api/venues - -
2023-01-02 10:21:48.168 -06:00 [DBG] The request path does not match the path filter
2023-01-02 10:21:48.185 -06:00 [DBG] 1 candidate(s) found for the request path '/api/venues'
2023-01-02 10:21:48.188 -06:00 [DBG] Endpoint 'Venues.Controllers.VenuesController.GetVenues (Venues)' with route pattern 'api/venues' is valid for the request path '/api/venues'
2023-01-02 10:21:48.189 -06:00 [DBG] Request matched endpoint 'Venues.Controllers.VenuesController.GetVenues (Venues)'
2023-01-02 10:21:48.191 -06:00 [INF] Executing endpoint 'Venues.Controllers.VenuesController.GetVenues (Venues)'
2023-01-02 10:21:48.203 -06:00 [INF] Route matched with {action = "GetVenues", controller = "Venues"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.ActionResult`1[System.Collections.Generic.IEnumerable`1[Venues.Models.VenueDto]]] GetVenues() on controller Venues.Controllers.VenuesController (Venues).
2023-01-02 10:21:48.204 -06:00 [DBG] Execution plan of authorization filters (in the following order): ["None"]
2023-01-02 10:21:48.204 -06:00 [DBG] Execution plan of resource filters (in the following order): ["None"]
2023-01-02 10:21:48.204 -06:00 [DBG] Execution plan of action filters (in the following order): ["Microsoft.AspNetCore.Mvc.ModelBinding.UnsupportedContentTypeFilter (Order: -3000)","Microsoft.AspNetCore.Mvc.Infrastructure.ModelStateInvalidFilter (Order: -2000)"]
2023-01-02 10:21:48.204 -06:00 [DBG] Execution plan of exception filters (in the following order): ["None"]
2023-01-02 10:21:48.204 -06:00 [DBG] Execution plan of result filters (in the following order): ["Microsoft.AspNetCore.Mvc.Infrastructure.ClientErrorResultFilter (Order: -2000)"]
2023-01-02 10:21:48.205 -06:00 [DBG] Executing controller factory for controller Venues.Controllers.VenuesController (Venues)
2023-01-02 10:21:48.307 -06:00 [DBG] An 'IServiceProvider' was created for internal use by Entity Framework.
2023-01-02 10:21:48.387 -06:00 [DBG] Executed controller factory for controller Venues.Controllers.VenuesController (Venues)
2023-01-02 10:21:48.730 -06:00 [INF] Entity Framework Core 6.0.12 initialized 'MlbGameDayContext' using provider 'Npgsql.EntityFrameworkCore.PostgreSQL:6.0.8+e68dfe8b5cbe4a26d20acc36def6187aa1cfdda3' with options: None
2023-01-02 10:21:48.755 -06:00 [DBG] Compiling query expression:
'DbSet<Venue>()
.OrderBy(v => v.Name)'
2023-01-02 10:21:48.913 -06:00 [DBG] Generated query execution expression:
'queryContext => new SingleQueryingEnumerable<Venue>(
(RelationalQueryContext)queryContext,
RelationalCommandCache.SelectExpression(
Projection Mapping:
EmptyProjectionMember -> Dictionary<IProperty, int> { [Property: Venue.Active (string), 0], [Property: Venue.Id (int?), 1], [Property: Venue.Link (string), 2], [Property: Venue.Name (string), 3] }
SELECT v.active, v.id, v.link, v.name
FROM venue AS v
ORDER BY v.name ASC),
Func<QueryContext, DbDataReader, ResultContext, SingleQueryResultCoordinator, Venue>,
Venues.DbContexts.MlbGameDayContext,
False,
False,
True
)'
2023-01-02 10:21:48.939 -06:00 [DBG] Creating DbCommand for 'ExecuteReader'.
2023-01-02 10:21:48.980 -06:00 [DBG] Created DbCommand for 'ExecuteReader' (40ms).
2023-01-02 10:21:48.986 -06:00 [DBG] Opening connection to database 'mlb-game-day' on server ''.
2023-01-02 10:21:49.187 -06:00 [DBG] Opened connection to database 'mlb-game-day' on server 'tcp://localhost:5432'.
2023-01-02 10:21:49.194 -06:00 [DBG] Executing DbCommand [Parameters=[], CommandType='"Text"', CommandTimeout='30']
SELECT v.active, v.id, v.link, v.name
FROM venue AS v
ORDER BY v.name
2023-01-02 10:21:49.247 -06:00 [INF] Executed DbCommand (54ms) [Parameters=[], CommandType='"Text"', CommandTimeout='30']
SELECT v.active, v.id, v.link, v.name
FROM venue AS v
ORDER BY v.name
2023-01-02 10:21:49.268 -06:00 [DBG] A data reader was disposed.
2023-01-02 10:21:49.274 -06:00 [DBG] Closing connection to database 'mlb-game-day' on server 'tcp://localhost:5432'.
2023-01-02 10:21:49.279 -06:00 [DBG] Closed connection to database 'mlb-game-day' on server ''.
2023-01-02 10:21:49.295 -06:00 [DBG] List of registered output formatters, in the following order: ["Microsoft.AspNetCore.Mvc.Formatters.HttpNoContentOutputFormatter","Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter","Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter","Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonOutputFormatter","Microsoft.AspNetCore.Mvc.Formatters.XmlDataContractSerializerOutputFormatter"]
2023-01-02 10:21:49.296 -06:00 [DBG] No information found on request to perform content negotiation.
2023-01-02 10:21:49.296 -06:00 [DBG] Attempting to select an output formatter without using a content type as no explicit content types were specified for the response.
2023-01-02 10:21:49.296 -06:00 [DBG] Attempting to select the first formatter in the output formatters list which can write the result.
2023-01-02 10:21:49.296 -06:00 [DBG] Selected output formatter 'Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonOutputFormatter' and content type 'application/json' to write the response.
2023-01-02 10:21:49.296 -06:00 [INF] Executing OkObjectResult, writing value of type 'System.Collections.Generic.List`1[[Venues.Models.VenueDto, Venues, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'.
2023-01-02 10:21:49.302 -06:00 [INF] Executed action Venues.Controllers.VenuesController.GetVenues (Venues) in 1094.9008ms
2023-01-02 10:21:49.302 -06:00 [INF] Executed endpoint 'Venues.Controllers.VenuesController.GetVenues (Venues)'
2023-01-02 10:21:49.304 -06:00 [DBG] Connection id "0HMNCRLNBFKP0" completed keep alive response.
2023-01-02 10:21:49.306 -06:00 [DBG] 'MlbGameDayContext' disposed.
2023-01-02 10:21:49.310 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/api/venues - - - 200 - application/json;+charset=utf-8 1144.6185ms
2023-01-02 10:22:13.034 -06:00 [DBG] Registered model binder providers, in the following order: ["Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BinderTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ServicesModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BodyModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.HeaderModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FloatingPointTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.EnumTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.DateTimeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.SimpleTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CancellationTokenModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ByteArrayModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FormFileModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FormCollectionModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.KeyValuePairModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.DictionaryModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ArrayModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CollectionModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexObjectModelBinderProvider"]
2023-01-02 10:22:13.087 -06:00 [DBG] Hosting starting
2023-01-02 10:22:13.175 -06:00 [DBG] Using development certificate: CN=localhost (Thumbprint: D1AC045DA5B402C2D2761887E1B189C128A0E6AE)
2023-01-02 10:22:13.290 -06:00 [INF] Now listening on: https://localhost:7103
2023-01-02 10:22:13.290 -06:00 [INF] Now listening on: http://localhost:5106
2023-01-02 10:22:13.290 -06:00 [DBG] Loaded hosting startup assembly Venues
2023-01-02 10:22:13.291 -06:00 [INF] Application started. Press Ctrl+C to shut down.
2023-01-02 10:22:13.291 -06:00 [INF] Hosting environment: Development
2023-01-02 10:22:13.291 -06:00 [INF] Content root path: /Users/noahspannbauer/Developer/Work/mlb-game-day/Venues/
2023-01-02 10:22:13.291 -06:00 [DBG] Hosting started
2023-01-02 10:22:13.296 -06:00 [DBG] Connection id "0HMNCRM0PTSFL" accepted.
2023-01-02 10:22:13.297 -06:00 [DBG] Connection id "0HMNCRM0PTSFL" started.
2023-01-02 10:22:14.243 -06:00 [DBG] Connection id "0HMNCRM0PTSFL" received FIN.
2023-01-02 10:22:14.257 -06:00 [DBG] Failed to authenticate HTTPS connection.
System.IO.IOException: Received an unexpected EOF or 0 bytes from the transport stream.
at System.Net.Security.SslStream.<FillHandshakeBufferAsync>g__InternalFillHandshakeBufferAsync|189_0[TIOAdapter](TIOAdapter adap, ValueTask`1 task, Int32 minSize)
at System.Net.Security.SslStream.ReceiveBlobAsync[TIOAdapter](TIOAdapter adapter)
at System.Net.Security.SslStream.ForceAuthenticationAsync[TIOAdapter](TIOAdapter adapter, Boolean receiveFirst, Byte[] reAuthenticationData, Boolean isApm)
at Microsoft.AspNetCore.Server.Kestrel.Https.Internal.HttpsConnectionMiddleware.OnConnectionAsync(ConnectionContext context)
2023-01-02 10:22:14.376 -06:00 [DBG] Connection id "0HMNCRM0PTSFL" stopped.
2023-01-02 10:22:14.382 -06:00 [DBG] Connection id "0HMNCRM0PTSFL" sending FIN because: "The Socket transport's send loop completed gracefully."
2023-01-02 10:22:14.438 -06:00 [DBG] Connection id "0HMNCRM0PTSFM" accepted.
2023-01-02 10:22:14.438 -06:00 [DBG] Connection id "0HMNCRM0PTSFM" started.
2023-01-02 10:22:14.507 -06:00 [DBG] Connection 0HMNCRM0PTSFM established using the following protocol: "Tls12"
2023-01-02 10:22:14.618 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/swagger/index.html - -
2023-01-02 10:22:14.619 -06:00 [DBG] Wildcard detected, all requests with hosts will be allowed.
2023-01-02 10:22:14.668 -06:00 [DBG] Connection id "0HMNCRM0PTSFM" completed keep alive response.
2023-01-02 10:22:14.669 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/swagger/index.html - - - 200 - text/html;charset=utf-8 52.2322ms
2023-01-02 10:22:14.776 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/swagger/v1/swagger.json - -
2023-01-02 10:22:14.843 -06:00 [DBG] Connection id "0HMNCRM0PTSFM" completed keep alive response.
2023-01-02 10:22:14.844 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 67.4693ms
2023-01-02 10:22:21.776 -06:00 [DBG] Connection id "0HMNCRM0PTSFN" received FIN.
2023-01-02 10:22:21.777 -06:00 [DBG] Connection id "0HMNCRM0PTSFN" accepted.
2023-01-02 10:22:21.777 -06:00 [DBG] Connection id "0HMNCRM0PTSFN" started.
2023-01-02 10:22:21.777 -06:00 [DBG] Connection id "0HMNCRM0PTSFO" accepted.
2023-01-02 10:22:21.804 -06:00 [DBG] Connection id "0HMNCRM0PTSFO" started.
2023-01-02 10:22:21.804 -06:00 [DBG] Failed to authenticate HTTPS connection.
System.IO.IOException: Received an unexpected EOF or 0 bytes from the transport stream.
at System.Net.Security.SslStream.ReceiveBlobAsync[TIOAdapter](TIOAdapter adapter)
at System.Net.Security.SslStream.ForceAuthenticationAsync[TIOAdapter](TIOAdapter adapter, Boolean receiveFirst, Byte[] reAuthenticationData, Boolean isApm)
at Microsoft.AspNetCore.Server.Kestrel.Https.Internal.HttpsConnectionMiddleware.OnConnectionAsync(ConnectionContext context)
2023-01-02 10:22:21.807 -06:00 [DBG] Connection id "0HMNCRM0PTSFN" stopped.
2023-01-02 10:22:21.807 -06:00 [DBG] Connection id "0HMNCRM0PTSFN" sending FIN because: "The Socket transport's send loop completed gracefully."
2023-01-02 10:22:21.836 -06:00 [DBG] Connection 0HMNCRM0PTSFO established using the following protocol: "Tls12"
2023-01-02 10:22:21.845 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/api/venues - -
2023-01-02 10:22:21.850 -06:00 [DBG] The request path does not match the path filter
2023-01-02 10:22:21.868 -06:00 [DBG] 1 candidate(s) found for the request path '/api/venues'
2023-01-02 10:22:21.870 -06:00 [DBG] Endpoint 'Venues.Controllers.VenuesController.GetVenues (Venues)' with route pattern 'api/venues' is valid for the request path '/api/venues'
2023-01-02 10:22:21.871 -06:00 [DBG] Request matched endpoint 'Venues.Controllers.VenuesController.GetVenues (Venues)'
2023-01-02 10:22:21.874 -06:00 [INF] Executing endpoint 'Venues.Controllers.VenuesController.GetVenues (Venues)'
2023-01-02 10:22:21.886 -06:00 [INF] Route matched with {action = "GetVenues", controller = "Venues"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.ActionResult`1[System.Collections.Generic.IEnumerable`1[Venues.Models.VenueDto]]] GetVenues() on controller Venues.Controllers.VenuesController (Venues).
2023-01-02 10:22:21.886 -06:00 [DBG] Execution plan of authorization filters (in the following order): ["None"]
2023-01-02 10:22:21.886 -06:00 [DBG] Execution plan of resource filters (in the following order): ["None"]
2023-01-02 10:22:21.886 -06:00 [DBG] Execution plan of action filters (in the following order): ["Microsoft.AspNetCore.Mvc.ModelBinding.UnsupportedContentTypeFilter (Order: -3000)","Microsoft.AspNetCore.Mvc.Infrastructure.ModelStateInvalidFilter (Order: -2000)"]
2023-01-02 10:22:21.886 -06:00 [DBG] Execution plan of exception filters (in the following order): ["None"]
2023-01-02 10:22:21.886 -06:00 [DBG] Execution plan of result filters (in the following order): ["Microsoft.AspNetCore.Mvc.Infrastructure.ClientErrorResultFilter (Order: -2000)"]
2023-01-02 10:22:21.886 -06:00 [DBG] Executing controller factory for controller Venues.Controllers.VenuesController (Venues)
2023-01-02 10:22:22.001 -06:00 [DBG] An 'IServiceProvider' was created for internal use by Entity Framework.
2023-01-02 10:22:22.089 -06:00 [DBG] Executed controller factory for controller Venues.Controllers.VenuesController (Venues)
2023-01-02 10:22:22.436 -06:00 [INF] Entity Framework Core 6.0.12 initialized 'MlbGameDayContext' using provider 'Npgsql.EntityFrameworkCore.PostgreSQL:6.0.8+e68dfe8b5cbe4a26d20acc36def6187aa1cfdda3' with options: None
2023-01-02 10:22:22.461 -06:00 [DBG] Compiling query expression:
'DbSet<Venue>()
.OrderBy(v => v.Name)'
2023-01-02 10:22:22.623 -06:00 [DBG] Generated query execution expression:
'queryContext => new SingleQueryingEnumerable<Venue>(
(RelationalQueryContext)queryContext,
RelationalCommandCache.SelectExpression(
Projection Mapping:
EmptyProjectionMember -> Dictionary<IProperty, int> { [Property: Venue.Active (string), 0], [Property: Venue.Id (int?), 1], [Property: Venue.Link (string), 2], [Property: Venue.Name (string), 3] }
SELECT v.active, v.id, v.link, v.name
FROM venue AS v
ORDER BY v.name ASC),
Func<QueryContext, DbDataReader, ResultContext, SingleQueryResultCoordinator, Venue>,
Venues.DbContexts.MlbGameDayContext,
False,
False,
True
)'
2023-01-02 10:22:22.649 -06:00 [DBG] Creating DbCommand for 'ExecuteReader'.
2023-01-02 10:22:22.690 -06:00 [DBG] Created DbCommand for 'ExecuteReader' (39ms).
2023-01-02 10:22:22.696 -06:00 [DBG] Opening connection to database 'mlb-game-day' on server ''.
2023-01-02 10:22:22.858 -06:00 [DBG] Opened connection to database 'mlb-game-day' on server 'tcp://localhost:5432'.
2023-01-02 10:22:22.864 -06:00 [DBG] Executing DbCommand [Parameters=[], CommandType='"Text"', CommandTimeout='30']
SELECT v.active, v.id, v.link, v.name
FROM venue AS v
ORDER BY v.name
2023-01-02 10:22:22.909 -06:00 [INF] Executed DbCommand (44ms) [Parameters=[], CommandType='"Text"', CommandTimeout='30']
SELECT v.active, v.id, v.link, v.name
FROM venue AS v
ORDER BY v.name
2023-01-02 10:22:22.927 -06:00 [DBG] A data reader was disposed.
2023-01-02 10:22:22.932 -06:00 [DBG] Closing connection to database 'mlb-game-day' on server 'tcp://localhost:5432'.
2023-01-02 10:22:22.936 -06:00 [DBG] Closed connection to database 'mlb-game-day' on server ''.
2023-01-02 10:22:22.951 -06:00 [DBG] List of registered output formatters, in the following order: ["Microsoft.AspNetCore.Mvc.Formatters.HttpNoContentOutputFormatter","Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter","Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter","Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonOutputFormatter","Microsoft.AspNetCore.Mvc.Formatters.XmlDataContractSerializerOutputFormatter"]
2023-01-02 10:22:22.952 -06:00 [DBG] No information found on request to perform content negotiation.
2023-01-02 10:22:22.952 -06:00 [DBG] Attempting to select an output formatter without using a content type as no explicit content types were specified for the response.
2023-01-02 10:22:22.952 -06:00 [DBG] Attempting to select the first formatter in the output formatters list which can write the result.
2023-01-02 10:22:22.952 -06:00 [DBG] Selected output formatter 'Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonOutputFormatter' and content type 'application/json' to write the response.
2023-01-02 10:22:22.952 -06:00 [INF] Executing OkObjectResult, writing value of type 'System.Collections.Generic.List`1[[Venues.Models.VenueDto, Venues, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'.
2023-01-02 10:22:22.957 -06:00 [INF] Executed action Venues.Controllers.VenuesController.GetVenues (Venues) in 1068.576ms
2023-01-02 10:22:22.958 -06:00 [INF] Executed endpoint 'Venues.Controllers.VenuesController.GetVenues (Venues)'
2023-01-02 10:22:22.959 -06:00 [DBG] Connection id "0HMNCRM0PTSFO" completed keep alive response.
2023-01-02 10:22:22.962 -06:00 [DBG] 'MlbGameDayContext' disposed.
2023-01-02 10:22:22.965 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/api/venues - - - 200 - application/json;+charset=utf-8 1120.2250ms
2023-01-02 10:22:58.141 -06:00 [DBG] Connection id "0HMNCRM0PTSFM" received FIN.
2023-01-02 10:22:58.180 -06:00 [DBG] Connection id "0HMNCRM0PTSFM" sending FIN because: "The client closed the connection."
2023-01-02 10:22:58.181 -06:00 [DBG] Connection id "0HMNCRM0PTSFM" disconnecting.
2023-01-02 10:22:58.184 -06:00 [DBG] Connection id "0HMNCRM0PTSFM" stopped.
2023-01-02 10:28:15.209 -06:00 [DBG] Registered model binder providers, in the following order: ["Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BinderTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ServicesModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BodyModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.HeaderModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FloatingPointTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.EnumTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.DateTimeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.SimpleTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CancellationTokenModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ByteArrayModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FormFileModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FormCollectionModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.KeyValuePairModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.DictionaryModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ArrayModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CollectionModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexObjectModelBinderProvider"]
2023-01-02 10:28:15.262 -06:00 [DBG] Hosting starting
2023-01-02 10:28:15.360 -06:00 [DBG] Using development certificate: CN=localhost (Thumbprint: D1AC045DA5B402C2D2761887E1B189C128A0E6AE)
2023-01-02 10:28:15.503 -06:00 [INF] Now listening on: https://localhost:7103
2023-01-02 10:28:15.529 -06:00 [INF] Now listening on: http://localhost:5106
2023-01-02 10:28:15.529 -06:00 [DBG] Loaded hosting startup assembly Venues
2023-01-02 10:28:15.529 -06:00 [INF] Application started. Press Ctrl+C to shut down.
2023-01-02 10:28:15.529 -06:00 [INF] Hosting environment: Development
2023-01-02 10:28:15.529 -06:00 [INF] Content root path: /Users/noahspannbauer/Developer/Work/mlb-game-day/Venues/
2023-01-02 10:28:15.529 -06:00 [DBG] Hosting started
2023-01-02 10:28:15.535 -06:00 [DBG] Connection id "0HMNCRPCOGC2P" accepted.
2023-01-02 10:28:15.536 -06:00 [DBG] Connection id "0HMNCRPCOGC2P" started.
2023-01-02 10:28:16.404 -06:00 [DBG] Connection id "0HMNCRPCOGC2P" received FIN.
2023-01-02 10:28:16.417 -06:00 [DBG] Failed to authenticate HTTPS connection.
System.IO.IOException: Received an unexpected EOF or 0 bytes from the transport stream.
at System.Net.Security.SslStream.<FillHandshakeBufferAsync>g__InternalFillHandshakeBufferAsync|189_0[TIOAdapter](TIOAdapter adap, ValueTask`1 task, Int32 minSize)
at System.Net.Security.SslStream.ReceiveBlobAsync[TIOAdapter](TIOAdapter adapter)
at System.Net.Security.SslStream.ForceAuthenticationAsync[TIOAdapter](TIOAdapter adapter, Boolean receiveFirst, Byte[] reAuthenticationData, Boolean isApm)
at Microsoft.AspNetCore.Server.Kestrel.Https.Internal.HttpsConnectionMiddleware.OnConnectionAsync(ConnectionContext context)
2023-01-02 10:28:16.457 -06:00 [DBG] Connection id "0HMNCRPCOGC2P" stopped.
2023-01-02 10:28:16.460 -06:00 [DBG] Connection id "0HMNCRPCOGC2P" sending FIN because: "The Socket transport's send loop completed gracefully."
2023-01-02 10:28:16.511 -06:00 [DBG] Connection id "0HMNCRPCOGC2Q" accepted.
2023-01-02 10:28:16.512 -06:00 [DBG] Connection id "0HMNCRPCOGC2Q" started.
2023-01-02 10:28:16.568 -06:00 [DBG] Connection 0HMNCRPCOGC2Q established using the following protocol: "Tls12"
2023-01-02 10:28:16.676 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/swagger/index.html - -
2023-01-02 10:28:16.676 -06:00 [DBG] Wildcard detected, all requests with hosts will be allowed.
2023-01-02 10:28:16.725 -06:00 [DBG] Connection id "0HMNCRPCOGC2Q" completed keep alive response.
2023-01-02 10:28:16.726 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/swagger/index.html - - - 200 - text/html;charset=utf-8 51.8814ms
2023-01-02 10:28:16.833 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/swagger/v1/swagger.json - -
2023-01-02 10:28:16.902 -06:00 [DBG] Connection id "0HMNCRPCOGC2Q" completed keep alive response.
2023-01-02 10:28:16.902 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 68.6707ms
2023-01-02 10:28:27.989 -06:00 [DBG] Connection id "0HMNCRPCOGC2R" received FIN.
2023-01-02 10:28:27.990 -06:00 [DBG] Connection id "0HMNCRPCOGC2R" accepted.
2023-01-02 10:28:27.991 -06:00 [DBG] Connection id "0HMNCRPCOGC2R" started.
2023-01-02 10:28:27.991 -06:00 [DBG] Connection id "0HMNCRPCOGC2S" accepted.
2023-01-02 10:28:27.991 -06:00 [DBG] Connection id "0HMNCRPCOGC2S" started.
2023-01-02 10:28:27.992 -06:00 [DBG] Failed to authenticate HTTPS connection.
System.IO.IOException: Received an unexpected EOF or 0 bytes from the transport stream.
at System.Net.Security.SslStream.ReceiveBlobAsync[TIOAdapter](TIOAdapter adapter)
at System.Net.Security.SslStream.ForceAuthenticationAsync[TIOAdapter](TIOAdapter adapter, Boolean receiveFirst, Byte[] reAuthenticationData, Boolean isApm)
at Microsoft.AspNetCore.Server.Kestrel.Https.Internal.HttpsConnectionMiddleware.OnConnectionAsync(ConnectionContext context)
2023-01-02 10:28:27.993 -06:00 [DBG] Connection id "0HMNCRPCOGC2R" stopped.
2023-01-02 10:28:27.994 -06:00 [DBG] Connection id "0HMNCRPCOGC2R" sending FIN because: "The Socket transport's send loop completed gracefully."
2023-01-02 10:28:28.021 -06:00 [DBG] Connection 0HMNCRPCOGC2S established using the following protocol: "Tls12"
2023-01-02 10:28:28.027 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/api/venues/3312 - -
2023-01-02 10:28:28.029 -06:00 [DBG] The request path does not match the path filter
2023-01-02 10:28:28.043 -06:00 [DBG] 1 candidate(s) found for the request path '/api/venues/3312'
2023-01-02 10:28:28.046 -06:00 [DBG] Endpoint 'Venues.Controllers.VenuesController.GetVenue (Venues)' with route pattern 'api/venues/{id}' is valid for the request path '/api/venues/3312'
2023-01-02 10:28:28.046 -06:00 [DBG] Request matched endpoint 'Venues.Controllers.VenuesController.GetVenue (Venues)'
2023-01-02 10:28:28.049 -06:00 [INF] Executing endpoint 'Venues.Controllers.VenuesController.GetVenue (Venues)'
2023-01-02 10:28:28.070 -06:00 [INF] Route matched with {action = "GetVenue", controller = "Venues"}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.ActionResult`1[Venues.Models.VenueDto]] GetVenue(Int32) on controller Venues.Controllers.VenuesController (Venues).
2023-01-02 10:28:28.070 -06:00 [DBG] Execution plan of authorization filters (in the following order): ["None"]
2023-01-02 10:28:28.071 -06:00 [DBG] Execution plan of resource filters (in the following order): ["None"]
2023-01-02 10:28:28.071 -06:00 [DBG] Execution plan of action filters (in the following order): ["Microsoft.AspNetCore.Mvc.ModelBinding.UnsupportedContentTypeFilter (Order: -3000)","Microsoft.AspNetCore.Mvc.Infrastructure.ModelStateInvalidFilter (Order: -2000)"]
2023-01-02 10:28:28.071 -06:00 [DBG] Execution plan of exception filters (in the following order): ["None"]
2023-01-02 10:28:28.071 -06:00 [DBG] Execution plan of result filters (in the following order): ["Microsoft.AspNetCore.Mvc.Infrastructure.ClientErrorResultFilter (Order: -2000)"]
2023-01-02 10:28:28.071 -06:00 [DBG] Executing controller factory for controller Venues.Controllers.VenuesController (Venues)
2023-01-02 10:28:28.175 -06:00 [DBG] An 'IServiceProvider' was created for internal use by Entity Framework.
2023-01-02 10:28:28.254 -06:00 [DBG] Executed controller factory for controller Venues.Controllers.VenuesController (Venues)
2023-01-02 10:28:28.256 -06:00 [DBG] Attempting to bind parameter 'id' of type 'System.Int32' ...
2023-01-02 10:28:28.256 -06:00 [DBG] Attempting to bind parameter 'id' of type 'System.Int32' using the name 'id' in request data ...
2023-01-02 10:28:28.257 -06:00 [DBG] Done attempting to bind parameter 'id' of type 'System.Int32'.
2023-01-02 10:28:28.257 -06:00 [DBG] Done attempting to bind parameter 'id' of type 'System.Int32'.
2023-01-02 10:28:28.257 -06:00 [DBG] Attempting to validate the bound parameter 'id' of type 'System.Int32' ...
2023-01-02 10:28:28.257 -06:00 [DBG] Done attempting to validate the bound parameter 'id' of type 'System.Int32'.
2023-01-02 10:28:28.607 -06:00 [INF] Entity Framework Core 6.0.12 initialized 'MlbGameDayContext' using provider 'Npgsql.EntityFrameworkCore.PostgreSQL:6.0.8+e68dfe8b5cbe4a26d20acc36def6187aa1cfdda3' with options: None
2023-01-02 10:28:28.644 -06:00 [DBG] Compiling query expression:
'DbSet<Venue>()
.Where(v => v.Id == __venueId_0)
.FirstOrDefault()'
2023-01-02 10:28:28.809 -06:00 [DBG] Generated query execution expression:
'queryContext => ShapedQueryCompilingExpressionVisitor.SingleOrDefaultAsync<Venue>(
asyncEnumerable: new SingleQueryingEnumerable<Venue>(
(RelationalQueryContext)queryContext,
RelationalCommandCache.SelectExpression(
Projection Mapping:
EmptyProjectionMember -> Dictionary<IProperty, int> { [Property: Venue.Active (string), 0], [Property: Venue.Id (int?), 1], [Property: Venue.Link (string), 2], [Property: Venue.Name (string), 3] }
SELECT TOP(1) v.active, v.id, v.link, v.name
FROM venue AS v
WHERE v.id == @__venueId_0),
Func<QueryContext, DbDataReader, ResultContext, SingleQueryResultCoordinator, Venue>,
Venues.DbContexts.MlbGameDayContext,
False,
False,
True
),
cancellationToken: queryContext.CancellationToken)'
2023-01-02 10:28:28.844 -06:00 [DBG] Creating DbCommand for 'ExecuteReader'.
2023-01-02 10:28:28.887 -06:00 [DBG] Created DbCommand for 'ExecuteReader' (41ms).
2023-01-02 10:28:28.894 -06:00 [DBG] Opening connection to database 'mlb-game-day' on server ''.
2023-01-02 10:28:29.058 -06:00 [DBG] Opened connection to database 'mlb-game-day' on server 'tcp://localhost:5432'.
2023-01-02 10:28:29.066 -06:00 [DBG] Executing DbCommand [Parameters=[@__venueId_0='?' (DbType = Int32)], CommandType='"Text"', CommandTimeout='30']
SELECT v.active, v.id, v.link, v.name
FROM venue AS v
WHERE v.id = @__venueId_0
LIMIT 1
2023-01-02 10:28:29.119 -06:00 [INF] Executed DbCommand (56ms) [Parameters=[@__venueId_0='?' (DbType = Int32)], CommandType='"Text"', CommandTimeout='30']
SELECT v.active, v.id, v.link, v.name
FROM venue AS v
WHERE v.id = @__venueId_0
LIMIT 1
2023-01-02 10:28:29.139 -06:00 [DBG] A data reader was disposed.
2023-01-02 10:28:29.144 -06:00 [DBG] Closing connection to database 'mlb-game-day' on server 'tcp://localhost:5432'.
2023-01-02 10:28:29.148 -06:00 [DBG] Closed connection to database 'mlb-game-day' on server ''.
2023-01-02 10:28:29.157 -06:00 [DBG] List of registered output formatters, in the following order: ["Microsoft.AspNetCore.Mvc.Formatters.HttpNoContentOutputFormatter","Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter","Microsoft.AspNetCore.Mvc.Formatters.StreamOutputFormatter","Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonOutputFormatter","Microsoft.AspNetCore.Mvc.Formatters.XmlDataContractSerializerOutputFormatter"]
2023-01-02 10:28:29.158 -06:00 [DBG] No information found on request to perform content negotiation.
2023-01-02 10:28:29.158 -06:00 [DBG] Attempting to select an output formatter without using a content type as no explicit content types were specified for the response.
2023-01-02 10:28:29.158 -06:00 [DBG] Attempting to select the first formatter in the output formatters list which can write the result.
2023-01-02 10:28:29.158 -06:00 [DBG] Selected output formatter 'Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonOutputFormatter' and content type 'application/json' to write the response.
2023-01-02 10:28:29.158 -06:00 [INF] Executing OkObjectResult, writing value of type 'Venues.Models.VenueDto'.
2023-01-02 10:28:29.163 -06:00 [INF] Executed action Venues.Controllers.VenuesController.GetVenue (Venues) in 1089.8089ms
2023-01-02 10:28:29.164 -06:00 [INF] Executed endpoint 'Venues.Controllers.VenuesController.GetVenue (Venues)'
2023-01-02 10:28:29.165 -06:00 [DBG] Connection id "0HMNCRPCOGC2S" completed keep alive response.
2023-01-02 10:28:29.168 -06:00 [DBG] 'MlbGameDayContext' disposed.
2023-01-02 10:28:29.172 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/api/venues/3312 - - - 200 - application/json;+charset=utf-8 1145.4517ms
2023-01-02 10:29:02.056 -06:00 [DBG] Connection id "0HMNCRPCOGC2Q" received FIN.
2023-01-02 10:29:02.109 -06:00 [DBG] Connection id "0HMNCRPCOGC2Q" sending FIN because: "The client closed the connection."
2023-01-02 10:29:02.110 -06:00 [DBG] Connection id "0HMNCRPCOGC2Q" disconnecting.
2023-01-02 10:29:02.113 -06:00 [DBG] Connection id "0HMNCRPCOGC2Q" stopped.
2023-01-02 10:29:09.777 -06:00 [DBG] Registered model binder providers, in the following order: ["Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BinderTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ServicesModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BodyModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.HeaderModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FloatingPointTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.EnumTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.DateTimeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.SimpleTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CancellationTokenModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ByteArrayModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FormFileModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FormCollectionModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.KeyValuePairModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.DictionaryModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ArrayModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CollectionModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexObjectModelBinderProvider"]
2023-01-02 10:29:09.849 -06:00 [DBG] Hosting starting
2023-01-02 10:29:09.939 -06:00 [DBG] Using development certificate: CN=localhost (Thumbprint: D1AC045DA5B402C2D2761887E1B189C128A0E6AE)
2023-01-02 10:29:09.999 -06:00 [INF] Now listening on: https://localhost:7103
2023-01-02 10:29:09.999 -06:00 [INF] Now listening on: http://localhost:5106
2023-01-02 10:29:10.000 -06:00 [DBG] Loaded hosting startup assembly Venues
2023-01-02 10:29:10.000 -06:00 [INF] Application started. Press Ctrl+C to shut down.
2023-01-02 10:29:10.000 -06:00 [INF] Hosting environment: Development
2023-01-02 10:29:10.000 -06:00 [INF] Content root path: /Users/noahspannbauer/Developer/Work/mlb-game-day/Venues/
2023-01-02 10:29:10.000 -06:00 [DBG] Hosting started
2023-01-02 10:29:10.007 -06:00 [DBG] Connection id "0HMNCRPSVVSRR" accepted.
2023-01-02 10:29:10.033 -06:00 [DBG] Connection id "0HMNCRPSVVSRR" started.
2023-01-02 10:29:11.002 -06:00 [DBG] Connection id "0HMNCRPSVVSRR" received FIN.
2023-01-02 10:29:11.017 -06:00 [DBG] Failed to authenticate HTTPS connection.
System.IO.IOException: Received an unexpected EOF or 0 bytes from the transport stream.
at System.Net.Security.SslStream.<FillHandshakeBufferAsync>g__InternalFillHandshakeBufferAsync|189_0[TIOAdapter](TIOAdapter adap, ValueTask`1 task, Int32 minSize)
at System.Net.Security.SslStream.ReceiveBlobAsync[TIOAdapter](TIOAdapter adapter)
at System.Net.Security.SslStream.ForceAuthenticationAsync[TIOAdapter](TIOAdapter adapter, Boolean receiveFirst, Byte[] reAuthenticationData, Boolean isApm)
at Microsoft.AspNetCore.Server.Kestrel.Https.Internal.HttpsConnectionMiddleware.OnConnectionAsync(ConnectionContext context)
2023-01-02 10:29:11.066 -06:00 [DBG] Connection id "0HMNCRPSVVSRR" stopped.
2023-01-02 10:29:11.070 -06:00 [DBG] Connection id "0HMNCRPSVVSRR" sending FIN because: "The Socket transport's send loop completed gracefully."
2023-01-02 10:29:11.140 -06:00 [DBG] Connection id "0HMNCRPSVVSRS" accepted.
2023-01-02 10:29:11.141 -06:00 [DBG] Connection id "0HMNCRPSVVSRS" started.
2023-01-02 10:29:11.197 -06:00 [DBG] Connection 0HMNCRPSVVSRS established using the following protocol: "Tls12"
2023-01-02 10:29:11.315 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/swagger/index.html - -
2023-01-02 10:29:11.315 -06:00 [DBG] Wildcard detected, all requests with hosts will be allowed.
2023-01-02 10:29:11.364 -06:00 [DBG] Connection id "0HMNCRPSVVSRS" completed keep alive response.
2023-01-02 10:29:11.365 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/swagger/index.html - - - 200 - text/html;charset=utf-8 51.4456ms
2023-01-02 10:29:11.472 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/swagger/v1/swagger.json - -
2023-01-02 10:29:11.539 -06:00 [DBG] Connection id "0HMNCRPSVVSRS" completed keep alive response.
2023-01-02 10:29:11.539 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 66.7127ms
2023-01-02 10:29:17.659 -06:00 [DBG] Registered model binder providers, in the following order: ["Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BinderTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ServicesModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BodyModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.HeaderModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FloatingPointTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.EnumTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.DateTimeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.SimpleTypeModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CancellationTokenModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ByteArrayModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FormFileModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.FormCollectionModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.KeyValuePairModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.DictionaryModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ArrayModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CollectionModelBinderProvider","Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexObjectModelBinderProvider"]
2023-01-02 10:29:17.733 -06:00 [DBG] Hosting starting
2023-01-02 10:29:17.833 -06:00 [DBG] Using development certificate: CN=localhost (Thumbprint: D1AC045DA5B402C2D2761887E1B189C128A0E6AE)
2023-01-02 10:29:17.992 -06:00 [INF] Now listening on: https://localhost:7103
2023-01-02 10:29:17.992 -06:00 [INF] Now listening on: http://localhost:5106
2023-01-02 10:29:17.992 -06:00 [DBG] Loaded hosting startup assembly Venues
2023-01-02 10:29:17.992 -06:00 [INF] Application started. Press Ctrl+C to shut down.
2023-01-02 10:29:17.993 -06:00 [INF] Hosting environment: Development
2023-01-02 10:29:17.993 -06:00 [INF] Content root path: /Users/noahspannbauer/Developer/Work/mlb-game-day/Venues/
2023-01-02 10:29:17.993 -06:00 [DBG] Hosting started
2023-01-02 10:29:17.999 -06:00 [DBG] Connection id "0HMNCRPVC6QKH" accepted.
2023-01-02 10:29:18.000 -06:00 [DBG] Connection id "0HMNCRPVC6QKH" started.
2023-01-02 10:29:18.855 -06:00 [DBG] Connection id "0HMNCRPVC6QKH" received FIN.
2023-01-02 10:29:18.874 -06:00 [DBG] Failed to authenticate HTTPS connection.
System.IO.IOException: Received an unexpected EOF or 0 bytes from the transport stream.
at System.Net.Security.SslStream.<FillHandshakeBufferAsync>g__InternalFillHandshakeBufferAsync|189_0[TIOAdapter](TIOAdapter adap, ValueTask`1 task, Int32 minSize)
at System.Net.Security.SslStream.ReceiveBlobAsync[TIOAdapter](TIOAdapter adapter)
at System.Net.Security.SslStream.ForceAuthenticationAsync[TIOAdapter](TIOAdapter adapter, Boolean receiveFirst, Byte[] reAuthenticationData, Boolean isApm)
at Microsoft.AspNetCore.Server.Kestrel.Https.Internal.HttpsConnectionMiddleware.OnConnectionAsync(ConnectionContext context)
2023-01-02 10:29:18.897 -06:00 [DBG] Connection id "0HMNCRPVC6QKH" stopped.
2023-01-02 10:29:18.900 -06:00 [DBG] Connection id "0HMNCRPVC6QKH" sending FIN because: "The Socket transport's send loop completed gracefully."
2023-01-02 10:29:18.901 -06:00 [DBG] Connection id "0HMNCRPVC6QKI" accepted.
2023-01-02 10:29:18.901 -06:00 [DBG] Connection id "0HMNCRPVC6QKI" started.
2023-01-02 10:29:18.942 -06:00 [DBG] Connection 0HMNCRPVC6QKI established using the following protocol: "Tls12"
2023-01-02 10:29:18.968 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/swagger/index.html - -
2023-01-02 10:29:18.968 -06:00 [DBG] Wildcard detected, all requests with hosts will be allowed.
2023-01-02 10:29:19.018 -06:00 [DBG] Connection id "0HMNCRPVC6QKI" completed keep alive response.
2023-01-02 10:29:19.019 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/swagger/index.html - - - 200 - text/html;charset=utf-8 53.3133ms
2023-01-02 10:29:19.074 -06:00 [INF] Request starting HTTP/1.1 GET https://localhost:7103/swagger/v1/swagger.json - -
2023-01-02 10:29:19.130 -06:00 [DBG] Connection id "0HMNCRPVC6QKI" completed keep alive response.
2023-01-02 10:29:19.130 -06:00 [INF] Request finished HTTP/1.1 GET https://localhost:7103/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 55.5481ms