AddSwagger #1
@@ -214,5 +214,25 @@ namespace Ghaymah.WondersAPI.Controllers
|
||||
return StatusCode(500, new { message = "An error occurred while retrieving a random wonder." });
|
||||
}
|
||||
}
|
||||
[HttpGet("GetWondersBypagination")]
|
||||
public async Task<ICollection<Wonder>> GetWondersByPagination(int pagenumber = 1, int pagesize = 10)
|
||||
{
|
||||
try
|
||||
{
|
||||
var wonders = await _context.Wonders
|
||||
.Skip((pagenumber - 1) * pagesize)
|
||||
.Take(pagesize)
|
||||
.ToListAsync();
|
||||
|
||||
_logger.LogInformation("Fetched {Count} wonders for page {PageNumber} with page size {PageSize}", wonders.Count, pagenumber, pagesize);
|
||||
|
||||
return wonders;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.LogError(ex, "Error while fetching paginated wonders for page {PageNumber} with page size {PageSize}", pagenumber, pagesize);
|
||||
return new List<Wonder>();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.9" />
|
||||
<PackageReference Include="Serilog.AspNetCore" Version="8.0.3" />
|
||||
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
|
||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
|
||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.6" />
|
||||
<PackageReference Include="System.Text.Json" Version="9.0.9" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
198
Logs/api.log
198
Logs/api.log
@@ -1457,3 +1457,201 @@
|
||||
{"Timestamp":"2025-10-07T06:33:47.3683772+03:00","Level":"Information","MessageTemplate":"Executed action {ActionName} in {ElapsedMilliseconds}ms","TraceId":"07fd12de27a8a0ad07dce0fbafc1994b","SpanId":"2c5d6fea99366a02","Properties":{"ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetRandomWonder (Ghaymah.WondersAPI)","ElapsedMilliseconds":3.7989,"EventId":{"Id":105,"Name":"ActionExecuted"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker","RequestId":"0HNG5A7DDKLV2:00000001","RequestPath":"/api/wonders/random","ConnectionId":"0HNG5A7DDKLV2"}}
|
||||
{"Timestamp":"2025-10-07T06:33:47.3696562+03:00","Level":"Information","MessageTemplate":"Executed endpoint '{EndpointName}'","TraceId":"07fd12de27a8a0ad07dce0fbafc1994b","SpanId":"2c5d6fea99366a02","Properties":{"EndpointName":"Ghaymah.WondersAPI.Controllers.WondersController.GetRandomWonder (Ghaymah.WondersAPI)","EventId":{"Id":1,"Name":"ExecutedEndpoint"},"SourceContext":"Microsoft.AspNetCore.Routing.EndpointMiddleware","RequestId":"0HNG5A7DDKLV2:00000001","RequestPath":"/api/wonders/random","ConnectionId":"0HNG5A7DDKLV2"}}
|
||||
{"Timestamp":"2025-10-07T06:33:47.3705396+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"07fd12de27a8a0ad07dce0fbafc1994b","SpanId":"2c5d6fea99366a02","Properties":{"ElapsedMilliseconds":13.738,"StatusCode":200,"ContentType":"application/json; charset=utf-8","ContentLength":null,"Protocol":"HTTP/1.1","Method":"GET","Scheme":"http","Host":"8d5d5fb6ad9e.ngrok-free.app","PathBase":"","Path":"/api/wonders/random","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG5A7DDKLV2:00000001","RequestPath":"/api/wonders/random","ConnectionId":"0HNG5A7DDKLV2"}}
|
||||
{"Timestamp":"2025-10-08T03:24:06.6108995+03:00","Level":"Information","MessageTemplate":"Saved {count} entities to in-memory store.","Properties":{"count":6,"EventId":{"Id":30100,"Name":"Microsoft.EntityFrameworkCore.Update.ChangesSaved"},"SourceContext":"Microsoft.EntityFrameworkCore.Update"}}
|
||||
{"Timestamp":"2025-10-08T03:24:06.6705660+03:00","Level":"Information","MessageTemplate":"Wonders API application started successfully at {time}","Properties":{"time":"2025-10-08T03:24:06.6687231+03:00","SourceContext":"Program"}}
|
||||
{"Timestamp":"2025-10-08T03:24:06.9837317+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"https://localhost:7247","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:24:06.9848066+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"http://localhost:5004","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:24:07.0315411+03:00","Level":"Information","MessageTemplate":"Application started. Press Ctrl+C to shut down.","Properties":{"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:24:07.0333541+03:00","Level":"Information","MessageTemplate":"Hosting environment: {EnvName}","Properties":{"EnvName":"Development","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:24:07.0346803+03:00","Level":"Information","MessageTemplate":"Content root path: {ContentRoot}","Properties":{"ContentRoot":"C:\\Users\\20106\\Desktop\\Ghyma","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:24:07.7429837+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"81371643be27ae89aca1c25043bfc368","SpanId":"319e51ea04a772f9","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:00000001","RequestPath":"/swagger","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:08.2581036+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"81371643be27ae89aca1c25043bfc368","SpanId":"319e51ea04a772f9","Properties":{"ElapsedMilliseconds":525.9962,"StatusCode":301,"ContentType":null,"ContentLength":0,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:00000001","RequestPath":"/swagger","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:08.2652321+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"b116bbc07a8809b59c436fec6a3782ce","SpanId":"14f358dfbedda9a0","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/index.html","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:00000003","RequestPath":"/swagger/index.html","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:08.3402404+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"b116bbc07a8809b59c436fec6a3782ce","SpanId":"14f358dfbedda9a0","Properties":{"ElapsedMilliseconds":75.0299,"StatusCode":200,"ContentType":"text/html;charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/index.html","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:00000003","RequestPath":"/swagger/index.html","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:08.4159799+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"3122ddab7efaf630bbc736cdd65fe22e","SpanId":"f77e6e51c37c215f","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/swagger-ui.css","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:00000005","RequestPath":"/swagger/swagger-ui.css","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:08.4230531+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"4991dd7c710437e29c6d97bc10f05ef4","SpanId":"b1419776179e912d","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/swagger-ui-bundle.js","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:00000009","RequestPath":"/swagger/swagger-ui-bundle.js","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:08.4415636+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"0aae663d7fcb8b6cff0f37d209b83c84","SpanId":"8783b1de2484d66b","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/index.js","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:0000000D","RequestPath":"/swagger/index.js","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:08.4230484+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"42d14637939c5a638a8754a7697576c9","SpanId":"828e8bab158b12c0","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/index.css","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:00000007","RequestPath":"/swagger/index.css","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:08.4666952+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"0aae663d7fcb8b6cff0f37d209b83c84","SpanId":"8783b1de2484d66b","Properties":{"ElapsedMilliseconds":26.6672,"StatusCode":200,"ContentType":"application/javascript;charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/index.js","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:0000000D","RequestPath":"/swagger/index.js","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:08.4231720+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"4e533628d43690dae7b6aa73681bcbe1","SpanId":"24d226fe2c934fa3","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/swagger-ui-standalone-preset.js","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:0000000B","RequestPath":"/swagger/swagger-ui-standalone-preset.js","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:08.4517705+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"8fdef770c45dd901575617e8677de770","SpanId":"7e8eaf52e91809a7","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:0000000F","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:08.4991423+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"8fdef770c45dd901575617e8677de770","SpanId":"7e8eaf52e91809a7","Properties":{"ElapsedMilliseconds":48.8961,"StatusCode":200,"ContentType":"application/javascript; charset=utf-8","ContentLength":16521,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:0000000F","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:08.4991423+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"42d14637939c5a638a8754a7697576c9","SpanId":"828e8bab158b12c0","Properties":{"ElapsedMilliseconds":76.3688,"StatusCode":200,"ContentType":"text/css","ContentLength":152,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/index.css","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:00000007","RequestPath":"/swagger/index.css","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:08.5171192+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"3122ddab7efaf630bbc736cdd65fe22e","SpanId":"f77e6e51c37c215f","Properties":{"ElapsedMilliseconds":101.5751,"StatusCode":200,"ContentType":"text/css","ContentLength":23647,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/swagger-ui.css","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:00000005","RequestPath":"/swagger/swagger-ui.css","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:08.5171351+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"4e533628d43690dae7b6aa73681bcbe1","SpanId":"24d226fe2c934fa3","Properties":{"ElapsedMilliseconds":94.4375,"StatusCode":200,"ContentType":"text/javascript","ContentLength":77352,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/swagger-ui-standalone-preset.js","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:0000000B","RequestPath":"/swagger/swagger-ui-standalone-preset.js","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:08.5253463+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"4991dd7c710437e29c6d97bc10f05ef4","SpanId":"b1419776179e912d","Properties":{"ElapsedMilliseconds":102.6404,"StatusCode":200,"ContentType":"text/javascript","ContentLength":424767,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/swagger-ui-bundle.js","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:00000009","RequestPath":"/swagger/swagger-ui-bundle.js","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:08.5659165+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"0a9c69c51ccc28042ec8faae3c60c2cf","SpanId":"1cf681554aab1cd8","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:00000011","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:08.6575012+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"0a9c69c51ccc28042ec8faae3c60c2cf","SpanId":"1cf681554aab1cd8","Properties":{"ElapsedMilliseconds":92.0722,"StatusCode":200,"ContentType":"text/javascript; charset=UTF-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:00000011","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:10.0859432+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"049bf2ad843db199356116e99d016e58","SpanId":"5429fd3c9a0057aa","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/v1/swagger.json","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:00000013","RequestPath":"/swagger/v1/swagger.json","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:10.1046301+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"9a3fbbca8ef6c354eb55b35398579739","SpanId":"53b2d0293564d7dd","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/favicon-32x32.png","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:00000015","RequestPath":"/swagger/favicon-32x32.png","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:10.1114769+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"9a3fbbca8ef6c354eb55b35398579739","SpanId":"53b2d0293564d7dd","Properties":{"ElapsedMilliseconds":7.336,"StatusCode":200,"ContentType":"image/png","ContentLength":628,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/favicon-32x32.png","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:00000015","RequestPath":"/swagger/favicon-32x32.png","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:10.1204628+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"049bf2ad843db199356116e99d016e58","SpanId":"5429fd3c9a0057aa","Properties":{"ElapsedMilliseconds":35.093,"StatusCode":200,"ContentType":"application/json;charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/v1/swagger.json","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG603V6T2V3:00000013","RequestPath":"/swagger/v1/swagger.json","ConnectionId":"0HNG603V6T2V3"}}
|
||||
{"Timestamp":"2025-10-08T03:24:33.0266849+03:00","Level":"Information","MessageTemplate":"Saved {count} entities to in-memory store.","Properties":{"count":6,"EventId":{"Id":30100,"Name":"Microsoft.EntityFrameworkCore.Update.ChangesSaved"},"SourceContext":"Microsoft.EntityFrameworkCore.Update"}}
|
||||
{"Timestamp":"2025-10-08T03:24:33.0732527+03:00","Level":"Information","MessageTemplate":"Wonders API application started successfully at {time}","Properties":{"time":"2025-10-08T03:24:33.0711404+03:00","SourceContext":"Program"}}
|
||||
{"Timestamp":"2025-10-08T03:24:33.2961320+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"https://localhost:7247","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:24:33.2971747+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"http://localhost:5004","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:24:33.3361866+03:00","Level":"Information","MessageTemplate":"Application started. Press Ctrl+C to shut down.","Properties":{"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:24:33.3372100+03:00","Level":"Information","MessageTemplate":"Hosting environment: {EnvName}","Properties":{"EnvName":"Development","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:24:33.3379043+03:00","Level":"Information","MessageTemplate":"Content root path: {ContentRoot}","Properties":{"ContentRoot":"C:\\Users\\20106\\Desktop\\Ghyma","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:24:34.6955457+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"87388af80b13869593c3a5273580d4e6","SpanId":"0429ecf6898d1e5d","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60474QBOJ:00000001","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60474QBOJ"}}
|
||||
{"Timestamp":"2025-10-08T03:24:34.7271606+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"87388af80b13869593c3a5273580d4e6","SpanId":"0429ecf6898d1e5d","Properties":{"ElapsedMilliseconds":46.1943,"StatusCode":200,"ContentType":"application/javascript; charset=utf-8","ContentLength":16521,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60474QBOJ:00000001","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60474QBOJ"}}
|
||||
{"Timestamp":"2025-10-08T03:24:34.7727801+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"60f707e67cd5af1d54dfad7acdad83bc","SpanId":"f5caf0a401d3bd61","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60474QBOJ:00000003","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG60474QBOJ"}}
|
||||
{"Timestamp":"2025-10-08T03:24:34.8557895+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"60f707e67cd5af1d54dfad7acdad83bc","SpanId":"f5caf0a401d3bd61","Properties":{"ElapsedMilliseconds":83.0177,"StatusCode":200,"ContentType":"text/javascript; charset=UTF-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60474QBOJ:00000003","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG60474QBOJ"}}
|
||||
{"Timestamp":"2025-10-08T03:24:36.2364246+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"953b85c85cde0db4e0a5ec3aaa060a4d","SpanId":"88f67bc078f2de63","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/v1/swagger.json","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60474QBOJ:00000005","RequestPath":"/swagger/v1/swagger.json","ConnectionId":"0HNG60474QBOJ"}}
|
||||
{"Timestamp":"2025-10-08T03:24:36.3092284+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"953b85c85cde0db4e0a5ec3aaa060a4d","SpanId":"88f67bc078f2de63","Properties":{"ElapsedMilliseconds":73.5394,"StatusCode":200,"ContentType":"application/json;charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/v1/swagger.json","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60474QBOJ:00000005","RequestPath":"/swagger/v1/swagger.json","ConnectionId":"0HNG60474QBOJ"}}
|
||||
{"Timestamp":"2025-10-08T03:25:28.8888746+03:00","Level":"Information","MessageTemplate":"Saved {count} entities to in-memory store.","Properties":{"count":6,"EventId":{"Id":30100,"Name":"Microsoft.EntityFrameworkCore.Update.ChangesSaved"},"SourceContext":"Microsoft.EntityFrameworkCore.Update"}}
|
||||
{"Timestamp":"2025-10-08T03:25:28.9328238+03:00","Level":"Information","MessageTemplate":"Wonders API application started successfully at {time}","Properties":{"time":"2025-10-08T03:25:28.9303910+03:00","SourceContext":"Program"}}
|
||||
{"Timestamp":"2025-10-08T03:25:29.1679891+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"https://localhost:7247","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:25:29.1690020+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"http://localhost:5004","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:25:29.2125226+03:00","Level":"Information","MessageTemplate":"Application started. Press Ctrl+C to shut down.","Properties":{"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:25:29.2137744+03:00","Level":"Information","MessageTemplate":"Hosting environment: {EnvName}","Properties":{"EnvName":"Development","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:25:29.2147073+03:00","Level":"Information","MessageTemplate":"Content root path: {ContentRoot}","Properties":{"ContentRoot":"C:\\Users\\20106\\Desktop\\Ghyma","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:25:30.6230310+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"1128c01276e12dbd963030993ff5b138","SpanId":"f90b4aaf00275065","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG604NP3T27:00000001","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG604NP3T27"}}
|
||||
{"Timestamp":"2025-10-08T03:25:30.6540367+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"1128c01276e12dbd963030993ff5b138","SpanId":"f90b4aaf00275065","Properties":{"ElapsedMilliseconds":42.8582,"StatusCode":200,"ContentType":"application/javascript; charset=utf-8","ContentLength":16521,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG604NP3T27:00000001","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG604NP3T27"}}
|
||||
{"Timestamp":"2025-10-08T03:25:30.6823309+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"22f436be8e63816f27153b68de1c2742","SpanId":"d4ec1b6c16790973","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG604NP3T27:00000003","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG604NP3T27"}}
|
||||
{"Timestamp":"2025-10-08T03:25:30.7766281+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"22f436be8e63816f27153b68de1c2742","SpanId":"d4ec1b6c16790973","Properties":{"ElapsedMilliseconds":94.2218,"StatusCode":200,"ContentType":"text/javascript; charset=UTF-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG604NP3T27:00000003","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG604NP3T27"}}
|
||||
{"Timestamp":"2025-10-08T03:25:32.1910459+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"ce147e27a8708ec29385982ba1a41aac","SpanId":"7e7d8751b5f43dd4","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/v1/swagger.json","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG604NP3T27:00000005","RequestPath":"/swagger/v1/swagger.json","ConnectionId":"0HNG604NP3T27"}}
|
||||
{"Timestamp":"2025-10-08T03:25:32.2565044+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"ce147e27a8708ec29385982ba1a41aac","SpanId":"7e7d8751b5f43dd4","Properties":{"ElapsedMilliseconds":65.617,"StatusCode":200,"ContentType":"application/json;charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/v1/swagger.json","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG604NP3T27:00000005","RequestPath":"/swagger/v1/swagger.json","ConnectionId":"0HNG604NP3T27"}}
|
||||
{"Timestamp":"2025-10-08T03:33:31.7015278+03:00","Level":"Information","MessageTemplate":"Saved {count} entities to in-memory store.","Properties":{"count":6,"EventId":{"Id":30100,"Name":"Microsoft.EntityFrameworkCore.Update.ChangesSaved"},"SourceContext":"Microsoft.EntityFrameworkCore.Update"}}
|
||||
{"Timestamp":"2025-10-08T03:33:31.7414590+03:00","Level":"Information","MessageTemplate":"Wonders API application started successfully at {time}","Properties":{"time":"2025-10-08T03:33:31.7392079+03:00","SourceContext":"Program"}}
|
||||
{"Timestamp":"2025-10-08T03:33:31.9831013+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"https://localhost:7247","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:33:31.9842608+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"http://localhost:5004","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:33:32.0397246+03:00","Level":"Information","MessageTemplate":"Application started. Press Ctrl+C to shut down.","Properties":{"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:33:32.0412881+03:00","Level":"Information","MessageTemplate":"Hosting environment: {EnvName}","Properties":{"EnvName":"Development","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:33:32.0430410+03:00","Level":"Information","MessageTemplate":"Content root path: {ContentRoot}","Properties":{"ContentRoot":"C:\\Users\\20106\\Desktop\\Ghyma","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:33:33.0991091+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"68f95fe6de60ddde01f387695303a09b","SpanId":"14731cd1c21215de","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG6097KA76M:00000001","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG6097KA76M"}}
|
||||
{"Timestamp":"2025-10-08T03:33:33.1393765+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"68f95fe6de60ddde01f387695303a09b","SpanId":"14731cd1c21215de","Properties":{"ElapsedMilliseconds":56.3173,"StatusCode":200,"ContentType":"application/javascript; charset=utf-8","ContentLength":16521,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG6097KA76M:00000001","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG6097KA76M"}}
|
||||
{"Timestamp":"2025-10-08T03:33:33.2175205+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"7f34b25e0a5cedd36c9b6d9b4c785549","SpanId":"fa5bb278b79d77fb","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG6097KA76M:00000003","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG6097KA76M"}}
|
||||
{"Timestamp":"2025-10-08T03:35:27.6999429+03:00","Level":"Information","MessageTemplate":"Saved {count} entities to in-memory store.","Properties":{"count":6,"EventId":{"Id":30100,"Name":"Microsoft.EntityFrameworkCore.Update.ChangesSaved"},"SourceContext":"Microsoft.EntityFrameworkCore.Update"}}
|
||||
{"Timestamp":"2025-10-08T03:35:27.7413410+03:00","Level":"Information","MessageTemplate":"Wonders API application started successfully at {time}","Properties":{"time":"2025-10-08T03:35:27.7388681+03:00","SourceContext":"Program"}}
|
||||
{"Timestamp":"2025-10-08T03:35:27.8886937+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"https://localhost:7247","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:35:27.8898210+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"http://localhost:5004","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:35:28.0075454+03:00","Level":"Information","MessageTemplate":"Application started. Press Ctrl+C to shut down.","Properties":{"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:35:28.0089442+03:00","Level":"Information","MessageTemplate":"Hosting environment: {EnvName}","Properties":{"EnvName":"Development","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:35:28.0098562+03:00","Level":"Information","MessageTemplate":"Content root path: {ContentRoot}","Properties":{"ContentRoot":"C:\\Users\\20106\\Desktop\\Ghyma","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:35:28.2764794+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"d255b6c0af41960468bb97e322347f83","SpanId":"af412c6c9cd7088a","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AA3PMAI:00000001","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60AA3PMAI"}}
|
||||
{"Timestamp":"2025-10-08T03:35:28.2934385+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"d255b6c0af41960468bb97e322347f83","SpanId":"af412c6c9cd7088a","Properties":{"ElapsedMilliseconds":19.2674,"StatusCode":200,"ContentType":"application/javascript; charset=utf-8","ContentLength":16521,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AA3PMAI:00000001","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60AA3PMAI"}}
|
||||
{"Timestamp":"2025-10-08T03:35:28.3618914+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"5fc6fd7afb0098c21028407f03479ccf","SpanId":"0a10f3f7288a3af7","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AA3PMAI:00000003","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG60AA3PMAI"}}
|
||||
{"Timestamp":"2025-10-08T03:35:28.4058127+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"5fc6fd7afb0098c21028407f03479ccf","SpanId":"0a10f3f7288a3af7","Properties":{"ElapsedMilliseconds":43.8634,"StatusCode":200,"ContentType":"text/javascript; charset=UTF-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AA3PMAI:00000003","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG60AA3PMAI"}}
|
||||
{"Timestamp":"2025-10-08T03:35:29.8651080+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"b82892aabbacb27617a5fb76c54b0b3e","SpanId":"55decc0f921a3759","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/v1/swagger.json","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AA3PMAI:00000005","RequestPath":"/swagger/v1/swagger.json","ConnectionId":"0HNG60AA3PMAI"}}
|
||||
{"Timestamp":"2025-10-08T03:35:29.8877456+03:00","Level":"Error","MessageTemplate":"An unhandled exception has occurred while executing the request.","TraceId":"b82892aabbacb27617a5fb76c54b0b3e","SpanId":"55decc0f921a3759","Exception":"Swashbuckle.AspNetCore.SwaggerGen.SwaggerGeneratorException: Ambiguous HTTP method for action - Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI). Actions require an explicit HttpMethod binding for Swagger/OpenAPI 3.0\r\n at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.PrepareGenerateOperation(IGrouping`2 group)\r\n at System.Linq.Enumerable.SelectEnumerableIterator`2.MoveNext()\r\n at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GenerateOperationsAsync(OpenApiDocument document, IEnumerable`1 apiDescriptions, SchemaRepository schemaRepository)\r\n at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GeneratePathsAsync(OpenApiDocument document, IEnumerable`1 apiDescriptions, SchemaRepository schemaRepository, Func`4 operationsGenerator)\r\n at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GeneratePathsAsync(OpenApiDocument document, IEnumerable`1 apiDescriptions, SchemaRepository schemaRepository)\r\n at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GetSwaggerAsync(String documentName, String host, String basePath)\r\n at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider)\r\n at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)\r\n at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddlewareImpl.Invoke(HttpContext context)","Properties":{"EventId":{"Id":1,"Name":"UnhandledException"},"SourceContext":"Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware","RequestId":"0HNG60AA3PMAI:00000005","RequestPath":"/swagger/v1/swagger.json","ConnectionId":"0HNG60AA3PMAI"}}
|
||||
{"Timestamp":"2025-10-08T03:35:29.8961982+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"b82892aabbacb27617a5fb76c54b0b3e","SpanId":"55decc0f921a3759","Properties":{"ElapsedMilliseconds":31.0078,"StatusCode":500,"ContentType":"text/plain; charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/v1/swagger.json","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AA3PMAI:00000005","RequestPath":"/swagger/v1/swagger.json","ConnectionId":"0HNG60AA3PMAI"}}
|
||||
{"Timestamp":"2025-10-08T03:35:58.6352837+03:00","Level":"Information","MessageTemplate":"Saved {count} entities to in-memory store.","Properties":{"count":6,"EventId":{"Id":30100,"Name":"Microsoft.EntityFrameworkCore.Update.ChangesSaved"},"SourceContext":"Microsoft.EntityFrameworkCore.Update"}}
|
||||
{"Timestamp":"2025-10-08T03:35:58.6727136+03:00","Level":"Information","MessageTemplate":"Wonders API application started successfully at {time}","Properties":{"time":"2025-10-08T03:35:58.6704086+03:00","SourceContext":"Program"}}
|
||||
{"Timestamp":"2025-10-08T03:35:58.7742871+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"https://localhost:7247","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:35:58.7759978+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"http://localhost:5004","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:35:58.8880912+03:00","Level":"Information","MessageTemplate":"Application started. Press Ctrl+C to shut down.","Properties":{"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:35:58.8890707+03:00","Level":"Information","MessageTemplate":"Hosting environment: {EnvName}","Properties":{"EnvName":"Development","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:35:58.8898394+03:00","Level":"Information","MessageTemplate":"Content root path: {ContentRoot}","Properties":{"ContentRoot":"C:\\Users\\20106\\Desktop\\Ghyma","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:35:59.5020069+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"ba8e1530289f285ec03b232363827fce","SpanId":"4af7dc1e067b8277","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/index.html","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AJC17BK:00000001","RequestPath":"/swagger/index.html","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:35:59.6018835+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"ba8e1530289f285ec03b232363827fce","SpanId":"4af7dc1e067b8277","Properties":{"ElapsedMilliseconds":100.8107,"StatusCode":200,"ContentType":"text/html;charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/index.html","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AJC17BK:00000001","RequestPath":"/swagger/index.html","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:35:59.6963056+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"56878a198deb516bb5af2e1de33f9ea2","SpanId":"2fcb9d02cb34f781","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AJC17BK:00000003","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:35:59.7040883+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"56878a198deb516bb5af2e1de33f9ea2","SpanId":"2fcb9d02cb34f781","Properties":{"ElapsedMilliseconds":7.7179,"StatusCode":200,"ContentType":"application/javascript; charset=utf-8","ContentLength":16521,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AJC17BK:00000003","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:35:59.7242705+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"e04886631524bf971807d29972cea5c3","SpanId":"a5c07470b9fb4b9e","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AJC17BK:00000005","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:35:59.7442918+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"e04886631524bf971807d29972cea5c3","SpanId":"a5c07470b9fb4b9e","Properties":{"ElapsedMilliseconds":19.987,"StatusCode":200,"ContentType":"text/javascript; charset=UTF-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AJC17BK:00000005","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:01.0709382+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"6914bc96751d886d1e970371aa108e52","SpanId":"04878638a7f3d3b0","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/v1/swagger.json","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AJC17BK:00000007","RequestPath":"/swagger/v1/swagger.json","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:01.0988704+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"6914bc96751d886d1e970371aa108e52","SpanId":"04878638a7f3d3b0","Properties":{"ElapsedMilliseconds":27.8512,"StatusCode":200,"ContentType":"application/json;charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/v1/swagger.json","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AJC17BK:00000007","RequestPath":"/swagger/v1/swagger.json","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:10.6370674+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"8aafe073d6f3f91c1394482fc71b44b1","SpanId":"8f4b111fa838d39e","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/api/Wonders/GetWondersBypagination","QueryString":"?pagenumber=1&pagesize=10","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AJC17BK:00000009","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:10.6514462+03:00","Level":"Information","MessageTemplate":"Executing endpoint '{EndpointName}'","TraceId":"8aafe073d6f3f91c1394482fc71b44b1","SpanId":"8f4b111fa838d39e","Properties":{"EndpointName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","EventId":{"Name":"ExecutingEndpoint"},"SourceContext":"Microsoft.AspNetCore.Routing.EndpointMiddleware","RequestId":"0HNG60AJC17BK:00000009","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:10.6717621+03:00","Level":"Information","MessageTemplate":"Route matched with {RouteData}. Executing controller action with signature {MethodInfo} on controller {Controller} ({AssemblyName}).","TraceId":"8aafe073d6f3f91c1394482fc71b44b1","SpanId":"8f4b111fa838d39e","Properties":{"RouteData":"{action = \"GetWondersByPagination\", controller = \"Wonders\"}","MethodInfo":"System.Threading.Tasks.Task`1[System.Collections.Generic.ICollection`1[WondersAPI.Models.Wonder]] GetWondersByPagination(Int32, Int32)","Controller":"Ghaymah.WondersAPI.Controllers.WondersController","AssemblyName":"Ghaymah.WondersAPI","EventId":{"Id":102,"Name":"ControllerActionExecuting"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker","ActionId":"e55ef324-b96e-4937-b858-20c31ce01ca8","ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","RequestId":"0HNG60AJC17BK:00000009","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:10.7410410+03:00","Level":"Information","MessageTemplate":"Executing {ObjectResultType}, writing value of type '{Type}'.","TraceId":"8aafe073d6f3f91c1394482fc71b44b1","SpanId":"8f4b111fa838d39e","Properties":{"ObjectResultType":"ObjectResult","Type":"System.Collections.Generic.List`1[[WondersAPI.Models.Wonder, Ghaymah.WondersAPI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]","EventId":{"Id":1,"Name":"ObjectResultExecuting"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor","ActionId":"e55ef324-b96e-4937-b858-20c31ce01ca8","ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","RequestId":"0HNG60AJC17BK:00000009","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:10.7519346+03:00","Level":"Information","MessageTemplate":"Executed action {ActionName} in {ElapsedMilliseconds}ms","TraceId":"8aafe073d6f3f91c1394482fc71b44b1","SpanId":"8f4b111fa838d39e","Properties":{"ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","ElapsedMilliseconds":76.3081,"EventId":{"Id":105,"Name":"ActionExecuted"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker","RequestId":"0HNG60AJC17BK:00000009","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:10.7534340+03:00","Level":"Information","MessageTemplate":"Executed endpoint '{EndpointName}'","TraceId":"8aafe073d6f3f91c1394482fc71b44b1","SpanId":"8f4b111fa838d39e","Properties":{"EndpointName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","EventId":{"Id":1,"Name":"ExecutedEndpoint"},"SourceContext":"Microsoft.AspNetCore.Routing.EndpointMiddleware","RequestId":"0HNG60AJC17BK:00000009","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:10.7552919+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"8aafe073d6f3f91c1394482fc71b44b1","SpanId":"8f4b111fa838d39e","Properties":{"ElapsedMilliseconds":118.1917,"StatusCode":200,"ContentType":"application/json; charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/api/Wonders/GetWondersBypagination","QueryString":"?pagenumber=1&pagesize=10","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AJC17BK:00000009","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:20.8490152+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"6fdc2a99939f737064677940a4922e3b","SpanId":"022e341d7cc55bab","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/api/Wonders/GetWondersBypagination","QueryString":"?pagenumber=1&pagesize=2","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AJC17BK:0000000B","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:20.8579230+03:00","Level":"Information","MessageTemplate":"Executing endpoint '{EndpointName}'","TraceId":"6fdc2a99939f737064677940a4922e3b","SpanId":"022e341d7cc55bab","Properties":{"EndpointName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","EventId":{"Name":"ExecutingEndpoint"},"SourceContext":"Microsoft.AspNetCore.Routing.EndpointMiddleware","RequestId":"0HNG60AJC17BK:0000000B","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:20.8601470+03:00","Level":"Information","MessageTemplate":"Route matched with {RouteData}. Executing controller action with signature {MethodInfo} on controller {Controller} ({AssemblyName}).","TraceId":"6fdc2a99939f737064677940a4922e3b","SpanId":"022e341d7cc55bab","Properties":{"RouteData":"{action = \"GetWondersByPagination\", controller = \"Wonders\"}","MethodInfo":"System.Threading.Tasks.Task`1[System.Collections.Generic.ICollection`1[WondersAPI.Models.Wonder]] GetWondersByPagination(Int32, Int32)","Controller":"Ghaymah.WondersAPI.Controllers.WondersController","AssemblyName":"Ghaymah.WondersAPI","EventId":{"Id":102,"Name":"ControllerActionExecuting"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker","ActionId":"e55ef324-b96e-4937-b858-20c31ce01ca8","ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","RequestId":"0HNG60AJC17BK:0000000B","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:20.8878225+03:00","Level":"Information","MessageTemplate":"Executing {ObjectResultType}, writing value of type '{Type}'.","TraceId":"6fdc2a99939f737064677940a4922e3b","SpanId":"022e341d7cc55bab","Properties":{"ObjectResultType":"ObjectResult","Type":"System.Collections.Generic.List`1[[WondersAPI.Models.Wonder, Ghaymah.WondersAPI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]","EventId":{"Id":1,"Name":"ObjectResultExecuting"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor","ActionId":"e55ef324-b96e-4937-b858-20c31ce01ca8","ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","RequestId":"0HNG60AJC17BK:0000000B","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:20.8906664+03:00","Level":"Information","MessageTemplate":"Executed action {ActionName} in {ElapsedMilliseconds}ms","TraceId":"6fdc2a99939f737064677940a4922e3b","SpanId":"022e341d7cc55bab","Properties":{"ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","ElapsedMilliseconds":27.7837,"EventId":{"Id":105,"Name":"ActionExecuted"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker","RequestId":"0HNG60AJC17BK:0000000B","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:20.8923495+03:00","Level":"Information","MessageTemplate":"Executed endpoint '{EndpointName}'","TraceId":"6fdc2a99939f737064677940a4922e3b","SpanId":"022e341d7cc55bab","Properties":{"EndpointName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","EventId":{"Id":1,"Name":"ExecutedEndpoint"},"SourceContext":"Microsoft.AspNetCore.Routing.EndpointMiddleware","RequestId":"0HNG60AJC17BK:0000000B","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:20.8933819+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"6fdc2a99939f737064677940a4922e3b","SpanId":"022e341d7cc55bab","Properties":{"ElapsedMilliseconds":44.4094,"StatusCode":200,"ContentType":"application/json; charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/api/Wonders/GetWondersBypagination","QueryString":"?pagenumber=1&pagesize=2","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AJC17BK:0000000B","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:30.2660480+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"06c9f483fe5f060743e3d42d42d33949","SpanId":"ad97e489722a5f07","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/api/Wonders/GetWondersBypagination","QueryString":"?pagenumber=1&pagesize=1","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AJC17BK:0000000D","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:30.2701703+03:00","Level":"Information","MessageTemplate":"Executing endpoint '{EndpointName}'","TraceId":"06c9f483fe5f060743e3d42d42d33949","SpanId":"ad97e489722a5f07","Properties":{"EndpointName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","EventId":{"Name":"ExecutingEndpoint"},"SourceContext":"Microsoft.AspNetCore.Routing.EndpointMiddleware","RequestId":"0HNG60AJC17BK:0000000D","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:30.2710416+03:00","Level":"Information","MessageTemplate":"Route matched with {RouteData}. Executing controller action with signature {MethodInfo} on controller {Controller} ({AssemblyName}).","TraceId":"06c9f483fe5f060743e3d42d42d33949","SpanId":"ad97e489722a5f07","Properties":{"RouteData":"{action = \"GetWondersByPagination\", controller = \"Wonders\"}","MethodInfo":"System.Threading.Tasks.Task`1[System.Collections.Generic.ICollection`1[WondersAPI.Models.Wonder]] GetWondersByPagination(Int32, Int32)","Controller":"Ghaymah.WondersAPI.Controllers.WondersController","AssemblyName":"Ghaymah.WondersAPI","EventId":{"Id":102,"Name":"ControllerActionExecuting"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker","ActionId":"e55ef324-b96e-4937-b858-20c31ce01ca8","ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","RequestId":"0HNG60AJC17BK:0000000D","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:30.2733890+03:00","Level":"Information","MessageTemplate":"Executing {ObjectResultType}, writing value of type '{Type}'.","TraceId":"06c9f483fe5f060743e3d42d42d33949","SpanId":"ad97e489722a5f07","Properties":{"ObjectResultType":"ObjectResult","Type":"System.Collections.Generic.List`1[[WondersAPI.Models.Wonder, Ghaymah.WondersAPI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]","EventId":{"Id":1,"Name":"ObjectResultExecuting"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor","ActionId":"e55ef324-b96e-4937-b858-20c31ce01ca8","ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","RequestId":"0HNG60AJC17BK:0000000D","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:30.2748936+03:00","Level":"Information","MessageTemplate":"Executed action {ActionName} in {ElapsedMilliseconds}ms","TraceId":"06c9f483fe5f060743e3d42d42d33949","SpanId":"ad97e489722a5f07","Properties":{"ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","ElapsedMilliseconds":2.3113,"EventId":{"Id":105,"Name":"ActionExecuted"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker","RequestId":"0HNG60AJC17BK:0000000D","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:30.2763602+03:00","Level":"Information","MessageTemplate":"Executed endpoint '{EndpointName}'","TraceId":"06c9f483fe5f060743e3d42d42d33949","SpanId":"ad97e489722a5f07","Properties":{"EndpointName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","EventId":{"Id":1,"Name":"ExecutedEndpoint"},"SourceContext":"Microsoft.AspNetCore.Routing.EndpointMiddleware","RequestId":"0HNG60AJC17BK:0000000D","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:30.2776612+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"06c9f483fe5f060743e3d42d42d33949","SpanId":"ad97e489722a5f07","Properties":{"ElapsedMilliseconds":11.5984,"StatusCode":200,"ContentType":"application/json; charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/api/Wonders/GetWondersBypagination","QueryString":"?pagenumber=1&pagesize=1","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AJC17BK:0000000D","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:37.5900341+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"9dc38f13f7c44b5959c6ec4e46fe9bd6","SpanId":"2518a6725a05db60","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/api/Wonders/GetWondersBypagination","QueryString":"?pagenumber=2&pagesize=4","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AJC17BK:0000000F","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:37.6155496+03:00","Level":"Information","MessageTemplate":"Executing endpoint '{EndpointName}'","TraceId":"9dc38f13f7c44b5959c6ec4e46fe9bd6","SpanId":"2518a6725a05db60","Properties":{"EndpointName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","EventId":{"Name":"ExecutingEndpoint"},"SourceContext":"Microsoft.AspNetCore.Routing.EndpointMiddleware","RequestId":"0HNG60AJC17BK:0000000F","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:37.6180136+03:00","Level":"Information","MessageTemplate":"Route matched with {RouteData}. Executing controller action with signature {MethodInfo} on controller {Controller} ({AssemblyName}).","TraceId":"9dc38f13f7c44b5959c6ec4e46fe9bd6","SpanId":"2518a6725a05db60","Properties":{"RouteData":"{action = \"GetWondersByPagination\", controller = \"Wonders\"}","MethodInfo":"System.Threading.Tasks.Task`1[System.Collections.Generic.ICollection`1[WondersAPI.Models.Wonder]] GetWondersByPagination(Int32, Int32)","Controller":"Ghaymah.WondersAPI.Controllers.WondersController","AssemblyName":"Ghaymah.WondersAPI","EventId":{"Id":102,"Name":"ControllerActionExecuting"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker","ActionId":"e55ef324-b96e-4937-b858-20c31ce01ca8","ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","RequestId":"0HNG60AJC17BK:0000000F","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:37.6315306+03:00","Level":"Information","MessageTemplate":"Executing {ObjectResultType}, writing value of type '{Type}'.","TraceId":"9dc38f13f7c44b5959c6ec4e46fe9bd6","SpanId":"2518a6725a05db60","Properties":{"ObjectResultType":"ObjectResult","Type":"System.Collections.Generic.List`1[[WondersAPI.Models.Wonder, Ghaymah.WondersAPI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]","EventId":{"Id":1,"Name":"ObjectResultExecuting"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor","ActionId":"e55ef324-b96e-4937-b858-20c31ce01ca8","ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","RequestId":"0HNG60AJC17BK:0000000F","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:37.6348843+03:00","Level":"Information","MessageTemplate":"Executed action {ActionName} in {ElapsedMilliseconds}ms","TraceId":"9dc38f13f7c44b5959c6ec4e46fe9bd6","SpanId":"2518a6725a05db60","Properties":{"ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","ElapsedMilliseconds":14.0157,"EventId":{"Id":105,"Name":"ActionExecuted"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker","RequestId":"0HNG60AJC17BK:0000000F","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:37.6372510+03:00","Level":"Information","MessageTemplate":"Executed endpoint '{EndpointName}'","TraceId":"9dc38f13f7c44b5959c6ec4e46fe9bd6","SpanId":"2518a6725a05db60","Properties":{"EndpointName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","EventId":{"Id":1,"Name":"ExecutedEndpoint"},"SourceContext":"Microsoft.AspNetCore.Routing.EndpointMiddleware","RequestId":"0HNG60AJC17BK:0000000F","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:36:37.6393962+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"9dc38f13f7c44b5959c6ec4e46fe9bd6","SpanId":"2518a6725a05db60","Properties":{"ElapsedMilliseconds":49.2552,"StatusCode":200,"ContentType":"application/json; charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/api/Wonders/GetWondersBypagination","QueryString":"?pagenumber=2&pagesize=4","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60AJC17BK:0000000F","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60AJC17BK"}}
|
||||
{"Timestamp":"2025-10-08T03:40:14.7526384+03:00","Level":"Information","MessageTemplate":"Saved {count} entities to in-memory store.","Properties":{"count":6,"EventId":{"Id":30100,"Name":"Microsoft.EntityFrameworkCore.Update.ChangesSaved"},"SourceContext":"Microsoft.EntityFrameworkCore.Update"}}
|
||||
{"Timestamp":"2025-10-08T03:40:14.8047943+03:00","Level":"Information","MessageTemplate":"Wonders API application started successfully at {time}","Properties":{"time":"2025-10-08T03:40:14.8015045+03:00","SourceContext":"Program"}}
|
||||
{"Timestamp":"2025-10-08T03:40:15.0719320+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"https://localhost:7247","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:40:15.0741388+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"http://localhost:5004","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:40:15.1290449+03:00","Level":"Information","MessageTemplate":"Application started. Press Ctrl+C to shut down.","Properties":{"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:40:15.1310642+03:00","Level":"Information","MessageTemplate":"Hosting environment: {EnvName}","Properties":{"EnvName":"Development","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:40:15.1323317+03:00","Level":"Information","MessageTemplate":"Content root path: {ContentRoot}","Properties":{"ContentRoot":"C:\\Users\\20106\\Desktop\\Ghyma","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:40:16.2996527+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"5ee107c669609ddac5b8498e80b992e7","SpanId":"21a738540e64bacb","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:00000001","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:16.3247953+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"5ee107c669609ddac5b8498e80b992e7","SpanId":"21a738540e64bacb","Properties":{"ElapsedMilliseconds":38.7353,"StatusCode":200,"ContentType":"application/javascript; charset=utf-8","ContentLength":16521,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:00000001","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:16.3617912+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"d80861ad1300f1bb9687677ea2df2c40","SpanId":"a680d6ff0e9e24d2","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:00000003","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:16.4479142+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"d80861ad1300f1bb9687677ea2df2c40","SpanId":"a680d6ff0e9e24d2","Properties":{"ElapsedMilliseconds":86.1374,"StatusCode":200,"ContentType":"text/javascript; charset=UTF-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:00000003","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:18.1394386+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"eb51214ed07c02b4f414134f181eef97","SpanId":"b97a95ec64807531","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/index.html","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:00000005","RequestPath":"/swagger/index.html","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:18.2752470+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"eb51214ed07c02b4f414134f181eef97","SpanId":"b97a95ec64807531","Properties":{"ElapsedMilliseconds":136.1429,"StatusCode":200,"ContentType":"text/html;charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/index.html","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:00000005","RequestPath":"/swagger/index.html","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:18.3057013+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"6bd9289bee84bf5beb004082f4960f5c","SpanId":"52aa61fe06b3fa59","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:00000007","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:18.3118631+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"6bd9289bee84bf5beb004082f4960f5c","SpanId":"52aa61fe06b3fa59","Properties":{"ElapsedMilliseconds":6.3441,"StatusCode":200,"ContentType":"application/javascript; charset=utf-8","ContentLength":16521,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:00000007","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:18.4544227+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"5ae30c5a5d9501f1c01a6809355bc353","SpanId":"442df8c1d3425abf","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:00000009","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:18.4820222+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"5ae30c5a5d9501f1c01a6809355bc353","SpanId":"442df8c1d3425abf","Properties":{"ElapsedMilliseconds":28.094,"StatusCode":200,"ContentType":"text/javascript; charset=UTF-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:00000009","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:19.0306070+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"0ab1fc3f7abb1b7fd40af6a64f816a1a","SpanId":"d7854bb2368f7e1c","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/index.html","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:0000000B","RequestPath":"/swagger/index.html","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:19.0443174+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"0ab1fc3f7abb1b7fd40af6a64f816a1a","SpanId":"d7854bb2368f7e1c","Properties":{"ElapsedMilliseconds":14.2872,"StatusCode":200,"ContentType":"text/html;charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/index.html","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:0000000B","RequestPath":"/swagger/index.html","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:19.1060244+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"27fc33569e23f6d27284bff1f9efa39c","SpanId":"e46df92edb7aebfb","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:0000000D","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:19.1107364+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"27fc33569e23f6d27284bff1f9efa39c","SpanId":"e46df92edb7aebfb","Properties":{"ElapsedMilliseconds":5.2228,"StatusCode":200,"ContentType":"application/javascript; charset=utf-8","ContentLength":16521,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:0000000D","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:19.2546561+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"106baf27ed85107f140ad031bcc98261","SpanId":"e8f8b9a393dd4991","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:0000000F","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:19.2731771+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"106baf27ed85107f140ad031bcc98261","SpanId":"e8f8b9a393dd4991","Properties":{"ElapsedMilliseconds":19.0253,"StatusCode":200,"ContentType":"text/javascript; charset=UTF-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:0000000F","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:20.1063632+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"28cf2e0b688426d0546846a997566abb","SpanId":"9c416e28735e9dd8","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/index.html","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:00000011","RequestPath":"/swagger/index.html","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:20.1141148+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"28cf2e0b688426d0546846a997566abb","SpanId":"9c416e28735e9dd8","Properties":{"ElapsedMilliseconds":7.9852,"StatusCode":200,"ContentType":"text/html;charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/index.html","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:00000011","RequestPath":"/swagger/index.html","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:20.1735411+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"eae98a9b19e5fa2f2892c0ab19a47fd6","SpanId":"768fce9a794a7da2","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:00000013","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:20.1791396+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"eae98a9b19e5fa2f2892c0ab19a47fd6","SpanId":"768fce9a794a7da2","Properties":{"ElapsedMilliseconds":5.9349,"StatusCode":200,"ContentType":"application/javascript; charset=utf-8","ContentLength":16521,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60CVOF1MM:00000013","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60CVOF1MM"}}
|
||||
{"Timestamp":"2025-10-08T03:40:28.3362163+03:00","Level":"Information","MessageTemplate":"Saved {count} entities to in-memory store.","Properties":{"count":6,"EventId":{"Id":30100,"Name":"Microsoft.EntityFrameworkCore.Update.ChangesSaved"},"SourceContext":"Microsoft.EntityFrameworkCore.Update"}}
|
||||
{"Timestamp":"2025-10-08T03:40:28.3697390+03:00","Level":"Information","MessageTemplate":"Wonders API application started successfully at {time}","Properties":{"time":"2025-10-08T03:40:28.3680700+03:00","SourceContext":"Program"}}
|
||||
{"Timestamp":"2025-10-08T03:40:28.4722497+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"https://localhost:7247","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:40:28.4730702+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"http://localhost:5004","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:40:28.5052007+03:00","Level":"Information","MessageTemplate":"Application started. Press Ctrl+C to shut down.","Properties":{"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:40:28.5071834+03:00","Level":"Information","MessageTemplate":"Hosting environment: {EnvName}","Properties":{"EnvName":"Development","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:40:28.5079406+03:00","Level":"Information","MessageTemplate":"Content root path: {ContentRoot}","Properties":{"ContentRoot":"C:\\Users\\20106\\Desktop\\Ghyma","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:40:29.1688001+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"dfd4a2fa22462f7317a25671fbd8ea32","SpanId":"3ab6496b8c5c732d","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60D3OS425:00000001","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60D3OS425"}}
|
||||
{"Timestamp":"2025-10-08T03:40:29.1836595+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"dfd4a2fa22462f7317a25671fbd8ea32","SpanId":"3ab6496b8c5c732d","Properties":{"ElapsedMilliseconds":16.3508,"StatusCode":200,"ContentType":"application/javascript; charset=utf-8","ContentLength":16521,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60D3OS425:00000001","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60D3OS425"}}
|
||||
{"Timestamp":"2025-10-08T03:40:29.2521824+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"2f6523dd480bce949d99c6742d44643b","SpanId":"82effaca383cbc8b","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60D3OS425:00000003","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG60D3OS425"}}
|
||||
{"Timestamp":"2025-10-08T03:40:29.2973903+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"2f6523dd480bce949d99c6742d44643b","SpanId":"82effaca383cbc8b","Properties":{"ElapsedMilliseconds":45.1123,"StatusCode":200,"ContentType":"text/javascript; charset=UTF-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60D3OS425:00000003","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG60D3OS425"}}
|
||||
{"Timestamp":"2025-10-08T03:40:30.7658164+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"8861fff88e8794fe5b93b756eb0ad36a","SpanId":"220675f800034c91","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/v1/swagger.json","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60D3OS425:00000005","RequestPath":"/swagger/v1/swagger.json","ConnectionId":"0HNG60D3OS425"}}
|
||||
{"Timestamp":"2025-10-08T03:40:30.8188486+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"8861fff88e8794fe5b93b756eb0ad36a","SpanId":"220675f800034c91","Properties":{"ElapsedMilliseconds":52.9595,"StatusCode":200,"ContentType":"application/json;charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/v1/swagger.json","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60D3OS425:00000005","RequestPath":"/swagger/v1/swagger.json","ConnectionId":"0HNG60D3OS425"}}
|
||||
{"Timestamp":"2025-10-08T03:40:39.0158120+03:00","Level":"Information","MessageTemplate":"Saved {count} entities to in-memory store.","Properties":{"count":6,"EventId":{"Id":30100,"Name":"Microsoft.EntityFrameworkCore.Update.ChangesSaved"},"SourceContext":"Microsoft.EntityFrameworkCore.Update"}}
|
||||
{"Timestamp":"2025-10-08T03:40:39.0541667+03:00","Level":"Information","MessageTemplate":"Wonders API application started successfully at {time}","Properties":{"time":"2025-10-08T03:40:39.0522525+03:00","SourceContext":"Program"}}
|
||||
{"Timestamp":"2025-10-08T03:40:39.1735266+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"https://localhost:7247","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:40:39.1745232+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"http://localhost:5004","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:40:39.2093362+03:00","Level":"Information","MessageTemplate":"Application started. Press Ctrl+C to shut down.","Properties":{"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:40:39.2104770+03:00","Level":"Information","MessageTemplate":"Hosting environment: {EnvName}","Properties":{"EnvName":"Development","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:40:39.2114014+03:00","Level":"Information","MessageTemplate":"Content root path: {ContentRoot}","Properties":{"ContentRoot":"C:\\Users\\20106\\Desktop\\Ghyma","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:42:29.0677932+03:00","Level":"Information","MessageTemplate":"Saved {count} entities to in-memory store.","Properties":{"count":6,"EventId":{"Id":30100,"Name":"Microsoft.EntityFrameworkCore.Update.ChangesSaved"},"SourceContext":"Microsoft.EntityFrameworkCore.Update"}}
|
||||
{"Timestamp":"2025-10-08T03:42:29.1061444+03:00","Level":"Information","MessageTemplate":"Wonders API application started successfully at {time}","Properties":{"time":"2025-10-08T03:42:29.1040464+03:00","SourceContext":"Program"}}
|
||||
{"Timestamp":"2025-10-08T03:42:29.3432302+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"https://localhost:7247","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:42:29.3451392+03:00","Level":"Information","MessageTemplate":"Now listening on: {address}","Properties":{"address":"http://localhost:5004","EventId":{"Id":14,"Name":"ListeningOnAddress"},"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:42:29.3861944+03:00","Level":"Information","MessageTemplate":"Application started. Press Ctrl+C to shut down.","Properties":{"SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:42:29.3873378+03:00","Level":"Information","MessageTemplate":"Hosting environment: {EnvName}","Properties":{"EnvName":"Development","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:42:29.3885626+03:00","Level":"Information","MessageTemplate":"Content root path: {ContentRoot}","Properties":{"ContentRoot":"C:\\Users\\20106\\Desktop\\Ghyma","SourceContext":"Microsoft.Hosting.Lifetime"}}
|
||||
{"Timestamp":"2025-10-08T03:42:30.0760143+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"fd338f8f2277b7ad5a2da19be88a3d3f","SpanId":"70443bc3223697e6","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60E7PCU0I:00000001","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:30.1016545+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"fd338f8f2277b7ad5a2da19be88a3d3f","SpanId":"70443bc3223697e6","Properties":{"ElapsedMilliseconds":35.7953,"StatusCode":200,"ContentType":"application/javascript; charset=utf-8","ContentLength":16521,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_framework/aspnetcore-browser-refresh.js","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60E7PCU0I:00000001","RequestPath":"/_framework/aspnetcore-browser-refresh.js","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:30.1469034+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"adb0052f0589a3b42e7bafc2e2912260","SpanId":"f324606d892c36d4","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60E7PCU0I:00000003","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:30.2340059+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"adb0052f0589a3b42e7bafc2e2912260","SpanId":"f324606d892c36d4","Properties":{"ElapsedMilliseconds":87.0796,"StatusCode":200,"ContentType":"text/javascript; charset=UTF-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/_vs/browserLink","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60E7PCU0I:00000003","RequestPath":"/_vs/browserLink","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:31.7018256+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"ed97013560f08af85459da70374c59cf","SpanId":"826ff4890222d767","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/v1/swagger.json","QueryString":"","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60E7PCU0I:00000005","RequestPath":"/swagger/v1/swagger.json","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:31.7602635+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"ed97013560f08af85459da70374c59cf","SpanId":"826ff4890222d767","Properties":{"ElapsedMilliseconds":58.846,"StatusCode":200,"ContentType":"application/json;charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/swagger/v1/swagger.json","QueryString":"","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60E7PCU0I:00000005","RequestPath":"/swagger/v1/swagger.json","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:40.9589464+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"84594487f6ed09514af266a4496ce593","SpanId":"0645ceebfcdeb99f","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/api/Wonders/GetWondersBypagination","QueryString":"?pagenumber=1&pagesize=2","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60E7PCU0I:00000007","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:40.9805712+03:00","Level":"Information","MessageTemplate":"Executing endpoint '{EndpointName}'","TraceId":"84594487f6ed09514af266a4496ce593","SpanId":"0645ceebfcdeb99f","Properties":{"EndpointName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","EventId":{"Name":"ExecutingEndpoint"},"SourceContext":"Microsoft.AspNetCore.Routing.EndpointMiddleware","RequestId":"0HNG60E7PCU0I:00000007","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:41.0029061+03:00","Level":"Information","MessageTemplate":"Route matched with {RouteData}. Executing controller action with signature {MethodInfo} on controller {Controller} ({AssemblyName}).","TraceId":"84594487f6ed09514af266a4496ce593","SpanId":"0645ceebfcdeb99f","Properties":{"RouteData":"{action = \"GetWondersByPagination\", controller = \"Wonders\"}","MethodInfo":"System.Threading.Tasks.Task`1[System.Collections.Generic.ICollection`1[WondersAPI.Models.Wonder]] GetWondersByPagination(Int32, Int32)","Controller":"Ghaymah.WondersAPI.Controllers.WondersController","AssemblyName":"Ghaymah.WondersAPI","EventId":{"Id":102,"Name":"ControllerActionExecuting"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker","ActionId":"5079a0c2-579b-45e0-b496-89a4ce4df3fd","ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","RequestId":"0HNG60E7PCU0I:00000007","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:41.0870879+03:00","Level":"Information","MessageTemplate":"Fetched {Count} wonders for page {PageNumber} with page size {PageSize}","TraceId":"84594487f6ed09514af266a4496ce593","SpanId":"0645ceebfcdeb99f","Properties":{"Count":2,"PageNumber":1,"PageSize":2,"SourceContext":"Ghaymah.WondersAPI.Controllers.WondersController","ActionId":"5079a0c2-579b-45e0-b496-89a4ce4df3fd","ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","RequestId":"0HNG60E7PCU0I:00000007","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:41.0942700+03:00","Level":"Information","MessageTemplate":"Executing {ObjectResultType}, writing value of type '{Type}'.","TraceId":"84594487f6ed09514af266a4496ce593","SpanId":"0645ceebfcdeb99f","Properties":{"ObjectResultType":"ObjectResult","Type":"System.Collections.Generic.List`1[[WondersAPI.Models.Wonder, Ghaymah.WondersAPI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]","EventId":{"Id":1,"Name":"ObjectResultExecuting"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor","ActionId":"5079a0c2-579b-45e0-b496-89a4ce4df3fd","ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","RequestId":"0HNG60E7PCU0I:00000007","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:41.1066691+03:00","Level":"Information","MessageTemplate":"Executed action {ActionName} in {ElapsedMilliseconds}ms","TraceId":"84594487f6ed09514af266a4496ce593","SpanId":"0645ceebfcdeb99f","Properties":{"ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","ElapsedMilliseconds":98.56,"EventId":{"Id":105,"Name":"ActionExecuted"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker","RequestId":"0HNG60E7PCU0I:00000007","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:41.1081721+03:00","Level":"Information","MessageTemplate":"Executed endpoint '{EndpointName}'","TraceId":"84594487f6ed09514af266a4496ce593","SpanId":"0645ceebfcdeb99f","Properties":{"EndpointName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","EventId":{"Id":1,"Name":"ExecutedEndpoint"},"SourceContext":"Microsoft.AspNetCore.Routing.EndpointMiddleware","RequestId":"0HNG60E7PCU0I:00000007","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:41.1104282+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"84594487f6ed09514af266a4496ce593","SpanId":"0645ceebfcdeb99f","Properties":{"ElapsedMilliseconds":151.6627,"StatusCode":200,"ContentType":"application/json; charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/api/Wonders/GetWondersBypagination","QueryString":"?pagenumber=1&pagesize=2","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60E7PCU0I:00000007","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:46.0721052+03:00","Level":"Information","MessageTemplate":"Request starting {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {ContentType} {ContentLength}","TraceId":"3cc759c7b7c017661b690d11d87229e9","SpanId":"444d906305eb1e1d","Properties":{"Protocol":"HTTP/2","Method":"GET","ContentType":null,"ContentLength":null,"Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/api/Wonders/GetWondersBypagination","QueryString":"?pagenumber=2&pagesize=2","EventId":{"Id":1},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60E7PCU0I:00000009","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:46.0768021+03:00","Level":"Information","MessageTemplate":"Executing endpoint '{EndpointName}'","TraceId":"3cc759c7b7c017661b690d11d87229e9","SpanId":"444d906305eb1e1d","Properties":{"EndpointName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","EventId":{"Name":"ExecutingEndpoint"},"SourceContext":"Microsoft.AspNetCore.Routing.EndpointMiddleware","RequestId":"0HNG60E7PCU0I:00000009","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:46.0782179+03:00","Level":"Information","MessageTemplate":"Route matched with {RouteData}. Executing controller action with signature {MethodInfo} on controller {Controller} ({AssemblyName}).","TraceId":"3cc759c7b7c017661b690d11d87229e9","SpanId":"444d906305eb1e1d","Properties":{"RouteData":"{action = \"GetWondersByPagination\", controller = \"Wonders\"}","MethodInfo":"System.Threading.Tasks.Task`1[System.Collections.Generic.ICollection`1[WondersAPI.Models.Wonder]] GetWondersByPagination(Int32, Int32)","Controller":"Ghaymah.WondersAPI.Controllers.WondersController","AssemblyName":"Ghaymah.WondersAPI","EventId":{"Id":102,"Name":"ControllerActionExecuting"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker","ActionId":"5079a0c2-579b-45e0-b496-89a4ce4df3fd","ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","RequestId":"0HNG60E7PCU0I:00000009","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:46.1004959+03:00","Level":"Information","MessageTemplate":"Fetched {Count} wonders for page {PageNumber} with page size {PageSize}","TraceId":"3cc759c7b7c017661b690d11d87229e9","SpanId":"444d906305eb1e1d","Properties":{"Count":2,"PageNumber":2,"PageSize":2,"SourceContext":"Ghaymah.WondersAPI.Controllers.WondersController","ActionId":"5079a0c2-579b-45e0-b496-89a4ce4df3fd","ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","RequestId":"0HNG60E7PCU0I:00000009","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:46.1026387+03:00","Level":"Information","MessageTemplate":"Executing {ObjectResultType}, writing value of type '{Type}'.","TraceId":"3cc759c7b7c017661b690d11d87229e9","SpanId":"444d906305eb1e1d","Properties":{"ObjectResultType":"ObjectResult","Type":"System.Collections.Generic.List`1[[WondersAPI.Models.Wonder, Ghaymah.WondersAPI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]","EventId":{"Id":1,"Name":"ObjectResultExecuting"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ObjectResultExecutor","ActionId":"5079a0c2-579b-45e0-b496-89a4ce4df3fd","ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","RequestId":"0HNG60E7PCU0I:00000009","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:46.1052673+03:00","Level":"Information","MessageTemplate":"Executed action {ActionName} in {ElapsedMilliseconds}ms","TraceId":"3cc759c7b7c017661b690d11d87229e9","SpanId":"444d906305eb1e1d","Properties":{"ActionName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","ElapsedMilliseconds":25.2019,"EventId":{"Id":105,"Name":"ActionExecuted"},"SourceContext":"Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker","RequestId":"0HNG60E7PCU0I:00000009","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:46.1067720+03:00","Level":"Information","MessageTemplate":"Executed endpoint '{EndpointName}'","TraceId":"3cc759c7b7c017661b690d11d87229e9","SpanId":"444d906305eb1e1d","Properties":{"EndpointName":"Ghaymah.WondersAPI.Controllers.WondersController.GetWondersByPagination (Ghaymah.WondersAPI)","EventId":{"Id":1,"Name":"ExecutedEndpoint"},"SourceContext":"Microsoft.AspNetCore.Routing.EndpointMiddleware","RequestId":"0HNG60E7PCU0I:00000009","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
{"Timestamp":"2025-10-08T03:42:46.1080134+03:00","Level":"Information","MessageTemplate":"Request finished {Protocol} {Method} {Scheme}://{Host}{PathBase}{Path}{QueryString} - {StatusCode} {ContentLength} {ContentType} {ElapsedMilliseconds}ms","TraceId":"3cc759c7b7c017661b690d11d87229e9","SpanId":"444d906305eb1e1d","Properties":{"ElapsedMilliseconds":36.438,"StatusCode":200,"ContentType":"application/json; charset=utf-8","ContentLength":null,"Protocol":"HTTP/2","Method":"GET","Scheme":"https","Host":"localhost:7247","PathBase":"","Path":"/api/Wonders/GetWondersBypagination","QueryString":"?pagenumber=2&pagesize=2","EventId":{"Id":2},"SourceContext":"Microsoft.AspNetCore.Hosting.Diagnostics","RequestId":"0HNG60E7PCU0I:00000009","RequestPath":"/api/Wonders/GetWondersBypagination","ConnectionId":"0HNG60E7PCU0I"}}
|
||||
|
||||
12
Program.cs
12
Program.cs
@@ -33,9 +33,17 @@ builder.Services.AddDbContext<AppDbContext>(options =>
|
||||
|
||||
builder.Services.AddControllers();
|
||||
builder.Services.AddEndpointsApiExplorer();
|
||||
|
||||
builder.Services.AddSwaggerGen();
|
||||
var app = builder.Build();
|
||||
|
||||
if (app.Environment.IsDevelopment())
|
||||
{
|
||||
app.UseSwagger();
|
||||
app.UseSwaggerUI(options =>
|
||||
{
|
||||
options.DocumentTitle = "Api";
|
||||
options.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1");
|
||||
});
|
||||
}
|
||||
// Database seeding
|
||||
using (var scope = app.Services.CreateScope())
|
||||
{
|
||||
|
||||
المرجع في مشكلة جديدة
حظر مستخدم