Compare commits
5 Commits
7c97ed9ad2
...
d7b94b6e29
Author | SHA1 | Date |
---|---|---|
|
d7b94b6e29 | 4 years ago |
|
f8704ec2e9 | 4 years ago |
|
762a845908 | 4 years ago |
|
14727f660f | 4 years ago |
|
103c0bbd86 | 4 years ago |
612 changed files with 57871 additions and 1810 deletions
Binary file not shown.
@ -0,0 +1,16 @@ |
|||||||
|
{ |
||||||
|
"Version": 1, |
||||||
|
"ProjectMap": { |
||||||
|
"7552727e-94c0-42e9-a793-6ceab50260cc": { |
||||||
|
"ProjectGuid": "7552727e-94c0-42e9-a793-6ceab50260cc", |
||||||
|
"DisplayName": "QualityControlPlatform", |
||||||
|
"ColorIndex": 0 |
||||||
|
}, |
||||||
|
"a2fe74e1-b743-11d0-ae1a-00a0c90fffc3": { |
||||||
|
"ProjectGuid": "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3", |
||||||
|
"DisplayName": "杂项文件", |
||||||
|
"ColorIndex": -1 |
||||||
|
} |
||||||
|
}, |
||||||
|
"NextColorIndex": 1 |
||||||
|
} |
Binary file not shown.
Binary file not shown.
@ -0,0 +1,12 @@ |
|||||||
|
{ |
||||||
|
"version": 1, |
||||||
|
"isRoot": true, |
||||||
|
"tools": { |
||||||
|
"dotnet-ef": { |
||||||
|
"version": "6.0.3", |
||||||
|
"commands": [ |
||||||
|
"dotnet-ef" |
||||||
|
] |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
using NLog; |
||||||
|
|
||||||
|
namespace QualityControlPlatform.Helpers.Nlog |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// 日志静态类 |
||||||
|
/// </summary> |
||||||
|
public class LogHelper |
||||||
|
{ |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 日志调用对象 |
||||||
|
/// </summary> |
||||||
|
public static readonly NLog.Logger Log = LogManager.GetCurrentClassLogger(); |
||||||
|
|
||||||
|
} |
||||||
|
} |
@ -1,15 +0,0 @@ |
|||||||
using System; |
|
||||||
|
|
||||||
namespace QualityControlPlatform.Models |
|
||||||
{ |
|
||||||
public class WeatherForecast |
|
||||||
{ |
|
||||||
public DateTime Date { get; set; } |
|
||||||
|
|
||||||
public int TemperatureC { get; set; } |
|
||||||
|
|
||||||
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); |
|
||||||
|
|
||||||
public string Summary { get; set; } |
|
||||||
} |
|
||||||
} |
|
@ -0,0 +1,30 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8" ?> |
||||||
|
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" |
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||||
|
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd" |
||||||
|
autoReload="true" |
||||||
|
throwExceptions="true" |
||||||
|
internalLogLevel="Off" internalLogFile="log\console.log"> |
||||||
|
|
||||||
|
<targets> |
||||||
|
<target name="console" xsi:type="ColoredConsole" |
||||||
|
layout="${date:format=HH\:mm\:ss}> ${message}"/> |
||||||
|
|
||||||
|
<!--VS输出窗口--> |
||||||
|
<target name="debugger" xsi:type="Debugger" |
||||||
|
layout="${date:format=HH\:mm\:ss} | ${level:padding=-5} | ${message}" /> |
||||||
|
|
||||||
|
<target name="info" xsi:type="File" fileName="${basedir}/Logs/Info/${shortdate}/info.txt" layout="${date:format=HH\:mm\:ss} | ${level:padding=-5} | ${message}" /> |
||||||
|
|
||||||
|
<!--保存至文件--> |
||||||
|
<target name="error_file" xsi:type="File" maxArchiveFiles="30" |
||||||
|
fileName="${basedir}/Logs/Error/${shortdate}/error.txt" |
||||||
|
layout="${longdate} | ${level:uppercase=false:padding=-5} | ${message} ${onexception:${exception:format=tostring} ${newline} ${stacktrace} ${newline}" /> |
||||||
|
</targets> |
||||||
|
<rules> |
||||||
|
|
||||||
|
<logger name="*" minlevel="Debug" writeTo="debugger" /> |
||||||
|
<logger name="*" minlevel="Info" writeTo="info" /> |
||||||
|
<logger name="*" minlevel="Error" writeTo="error_file" /> |
||||||
|
</rules> |
||||||
|
</nlog> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,8 @@ |
|||||||
|
2022-03-29 16:09:00.2552 | Error | An unhandled exception has occurred while executing the request. Swashbuckle.AspNetCore.SwaggerGen.SwaggerGeneratorException: Ambiguous HTTP method for action - QualityControlPlatform.Controllers.News.NewController.Change (QualityControlPlatform). Actions require an explicit HttpMethod binding for Swagger/OpenAPI 3.0 |
||||||
|
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GenerateOperations(IEnumerable`1 apiDescriptions, SchemaRepository schemaRepository) |
||||||
|
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GeneratePaths(IEnumerable`1 apiDescriptions, SchemaRepository schemaRepository) |
||||||
|
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GetSwagger(String documentName, String host, String basePath) |
||||||
|
at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) |
||||||
|
at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) |
||||||
|
AsyncMethodBuilderCore.Start => <Invoke>d__9.MoveNext => DiagnosticsLoggerExtensions.UnhandledException |
||||||
|
|
@ -0,0 +1,8 @@ |
|||||||
|
2022-03-30 17:23:08.5393 | Error | An unhandled exception has occurred while executing the request. Swashbuckle.AspNetCore.SwaggerGen.SwaggerGeneratorException: Ambiguous HTTP method for action - QualityControlPlatform.Controllers.User.UserController.SendSms (QualityControlPlatform). Actions require an explicit HttpMethod binding for Swagger/OpenAPI 3.0 |
||||||
|
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GenerateOperations(IEnumerable`1 apiDescriptions, SchemaRepository schemaRepository) |
||||||
|
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GeneratePaths(IEnumerable`1 apiDescriptions, SchemaRepository schemaRepository) |
||||||
|
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GetSwagger(String documentName, String host, String basePath) |
||||||
|
at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) |
||||||
|
at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) |
||||||
|
AsyncMethodBuilderCore.Start => <Invoke>d__9.MoveNext => DiagnosticsLoggerExtensions.UnhandledException |
||||||
|
|
@ -0,0 +1,90 @@ |
|||||||
|
2022-03-31 10:36:19.0361 | Error | An unhandled exception has occurred while executing the request. Swashbuckle.AspNetCore.SwaggerGen.SwaggerGeneratorException: Ambiguous HTTP method for action - QualityControlPlatform.Controllers.User.UserController.CacheSet (QualityControlPlatform). Actions require an explicit HttpMethod binding for Swagger/OpenAPI 3.0 |
||||||
|
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GenerateOperations(IEnumerable`1 apiDescriptions, SchemaRepository schemaRepository) |
||||||
|
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GeneratePaths(IEnumerable`1 apiDescriptions, SchemaRepository schemaRepository) |
||||||
|
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GetSwagger(String documentName, String host, String basePath) |
||||||
|
at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) |
||||||
|
at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) |
||||||
|
AsyncMethodBuilderCore.Start => <Invoke>d__9.MoveNext => DiagnosticsLoggerExtensions.UnhandledException |
||||||
|
|
||||||
|
2022-03-31 17:00:20.7176 | Error | An unhandled exception has occurred while executing the request. System.InvalidOperationException: This MySqlConnection is already in use. See https://fl.vu/mysql-conn-reuse |
||||||
|
at MySqlConnector.Core.ServerSession.StartQuerying(ICancellableCommand command) in /_/src/MySqlConnector/Core/ServerSession.cs:line 279 |
||||||
|
at MySqlConnector.Core.CommandExecutor.ExecuteReaderAsync(IReadOnlyList`1 commands, ICommandPayloadCreator payloadCreator, CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/Core/CommandExecutor.cs:line 56 |
||||||
|
at MySqlConnector.MySqlCommand.ExecuteReaderAsync(CommandBehavior behavior, IOBehavior ioBehavior, CancellationToken cancellationToken) in /_/src/MySqlConnector/MySqlCommand.cs:line 319 |
||||||
|
at MySqlConnector.MySqlCommand.ExecuteDbDataReader(CommandBehavior behavior) in /_/src/MySqlConnector/MySqlCommand.cs:line 261 |
||||||
|
at System.Data.Common.DbCommand.ExecuteReader() |
||||||
|
at Microsoft.EntityFrameworkCore.Storage.RelationalCommand.ExecuteReader(RelationalCommandParameterObject parameterObject) |
||||||
|
at Microsoft.EntityFrameworkCore.Query.Internal.SingleQueryingEnumerable`1.Enumerator.InitializeReader(DbContext _, Boolean result) |
||||||
|
at Pomelo.EntityFrameworkCore.MySql.Storage.Internal.MySqlExecutionStrategy.Execute[TState,TResult](TState state, Func`3 operation, Func`3 verifySucceeded) |
||||||
|
at Microsoft.EntityFrameworkCore.Query.Internal.SingleQueryingEnumerable`1.Enumerator.MoveNext() |
||||||
|
at System.Text.Json.JsonSerializer.HandleEnumerable(JsonClassInfo elementClassInfo, JsonSerializerOptions options, Utf8JsonWriter writer, WriteStack& state) |
||||||
|
at System.Text.Json.JsonSerializer.Write(Utf8JsonWriter writer, Int32 originalWriterDepth, Int32 flushThreshold, JsonSerializerOptions options, WriteStack& state) |
||||||
|
at System.Text.Json.JsonSerializer.WriteAsyncCore(Stream utf8Json, Object value, Type inputType, JsonSerializerOptions options, CancellationToken cancellationToken) |
||||||
|
at Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonOutputFormatter.WriteResponseBodyAsync(OutputFormatterWriteContext context, Encoding selectedEncoding) |
||||||
|
at Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonOutputFormatter.WriteResponseBodyAsync(OutputFormatterWriteContext context, Encoding selectedEncoding) |
||||||
|
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeResultAsync>g__Logged|21_0(ResourceInvoker invoker, IActionResult result) |
||||||
|
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextResultFilterAsync>g__Awaited|29_0[TFilter,TFilterAsync](ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) |
||||||
|
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResultExecutedContextSealed context) |
||||||
|
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.ResultNext[TFilter,TFilterAsync](State& next, Scope& scope, Object& state, Boolean& isCompleted) |
||||||
|
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeResultFilters() |
||||||
|
--- End of stack trace from previous location where exception was thrown --- |
||||||
|
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeFilterPipelineAsync>g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) |
||||||
|
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Logged|17_1(ResourceInvoker invoker) |
||||||
|
at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) |
||||||
|
at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) |
||||||
|
at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) |
||||||
|
at QualityControlPlatform.Middleware.JwtMiddleware.Invoke(HttpContext context) in C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\Middleware\JwtMiddleware.cs:line 87 |
||||||
|
at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) |
||||||
|
at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) |
||||||
|
at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) |
||||||
|
at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) |
||||||
|
AsyncMethodBuilderCore.Start => <Invoke>d__9.MoveNext => DiagnosticsLoggerExtensions.UnhandledException |
||||||
|
|
||||||
|
2022-03-31 17:23:12.8322 | Error | An unhandled exception has occurred while executing the request. Swashbuckle.AspNetCore.SwaggerGen.SwaggerGeneratorException: Ambiguous HTTP method for action - QualityControlPlatform.Controllers.User.HospitalController.AnswerUsers (QualityControlPlatform). Actions require an explicit HttpMethod binding for Swagger/OpenAPI 3.0 |
||||||
|
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GenerateOperations(IEnumerable`1 apiDescriptions, SchemaRepository schemaRepository) |
||||||
|
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GeneratePaths(IEnumerable`1 apiDescriptions, SchemaRepository schemaRepository) |
||||||
|
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GetSwagger(String documentName, String host, String basePath) |
||||||
|
at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) |
||||||
|
at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) |
||||||
|
AsyncMethodBuilderCore.Start => <Invoke>d__9.MoveNext => DiagnosticsLoggerExtensions.UnhandledException |
||||||
|
|
||||||
|
2022-03-31 17:26:11.7694 | Error | An unhandled exception has occurred while executing the request. System.InvalidOperationException: Unable to translate the given 'GroupBy' pattern. Call 'AsEnumerable' before 'GroupBy' to evaluate it client-side. |
||||||
|
at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.VisitExtension(Expression extensionExpression) |
||||||
|
at System.Linq.Expressions.Expression.Accept(ExpressionVisitor visitor) |
||||||
|
at System.Linq.Expressions.ExpressionVisitor.Visit(Expression node) |
||||||
|
at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.ShaperProcessingExpressionVisitor.ProcessShaper(Expression shaperExpression, RelationalCommandCache& relationalCommandCache, LambdaExpression& relatedDataLoaders) |
||||||
|
at Microsoft.EntityFrameworkCore.Query.RelationalShapedQueryCompilingExpressionVisitor.VisitShapedQuery(ShapedQueryExpression shapedQueryExpression) |
||||||
|
at Microsoft.EntityFrameworkCore.Query.ShapedQueryCompilingExpressionVisitor.VisitExtension(Expression extensionExpression) |
||||||
|
at System.Linq.Expressions.Expression.Accept(ExpressionVisitor visitor) |
||||||
|
at System.Linq.Expressions.ExpressionVisitor.Visit(Expression node) |
||||||
|
at Microsoft.EntityFrameworkCore.Query.QueryCompilationContext.CreateQueryExecutor[TResult](Expression query) |
||||||
|
at Microsoft.EntityFrameworkCore.Storage.Database.CompileQuery[TResult](Expression query, Boolean async) |
||||||
|
at Microsoft.EntityFrameworkCore.Query.Internal.QueryCompiler.CompileQueryCore[TResult](IDatabase database, Expression query, IModel model, Boolean async) |
||||||
|
at Microsoft.EntityFrameworkCore.Query.Internal.QueryCompiler.<>c__DisplayClass9_0`1.<Execute>b__0() |
||||||
|
at Microsoft.EntityFrameworkCore.Query.Internal.CompiledQueryCache.GetOrAddQuery[TResult](Object cacheKey, Func`1 compiler) |
||||||
|
at Microsoft.EntityFrameworkCore.Query.Internal.QueryCompiler.Execute[TResult](Expression query) |
||||||
|
at Microsoft.EntityFrameworkCore.Query.Internal.EntityQueryProvider.Execute[TResult](Expression expression) |
||||||
|
at Microsoft.EntityFrameworkCore.Query.Internal.EntityQueryable`1.GetEnumerator() |
||||||
|
at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) |
||||||
|
at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) |
||||||
|
at QualityControlPlatform.Controllers.User.HospitalController.AnswerUsers(Int32 hospitalId, Int32 diseasesId, Int32 page, Int32 number) |
||||||
|
at lambda_method(Closure , Object , Object[] ) |
||||||
|
at Microsoft.Extensions.Internal.ObjectMethodExecutor.Execute(Object target, Object[] parameters) |
||||||
|
at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) |
||||||
|
at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeActionMethodAsync>g__Logged|12_1(ControllerActionInvoker invoker) |
||||||
|
at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) |
||||||
|
at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) |
||||||
|
at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) |
||||||
|
at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() |
||||||
|
--- End of stack trace from previous location where exception was thrown --- |
||||||
|
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeFilterPipelineAsync>g__Awaited|19_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) |
||||||
|
at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Logged|17_1(ResourceInvoker invoker) |
||||||
|
at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) |
||||||
|
at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) |
||||||
|
at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) |
||||||
|
at QualityControlPlatform.Middleware.JwtMiddleware.Invoke(HttpContext context) |
||||||
|
at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) |
||||||
|
at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) |
||||||
|
at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) |
||||||
|
at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) |
||||||
|
AsyncMethodBuilderCore.Start => <Invoke>d__9.MoveNext => DiagnosticsLoggerExtensions.UnhandledException |
||||||
|
|
@ -0,0 +1,8 @@ |
|||||||
|
2022-04-01 15:57:27.2064 | Error | An unhandled exception has occurred while executing the request. Swashbuckle.AspNetCore.SwaggerGen.SwaggerGeneratorException: Conflicting method/path combination "GET api/Menu" for actions - QualityControlPlatform.Controllers.Menus.MenuController.List (QualityControlPlatform),QualityControlPlatform.Controllers.Menus.MenuController.Update (QualityControlPlatform). Actions require a unique method/path combination for Swagger/OpenAPI 3.0. Use ConflictingActionsResolver as a workaround |
||||||
|
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GenerateOperations(IEnumerable`1 apiDescriptions, SchemaRepository schemaRepository) |
||||||
|
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GeneratePaths(IEnumerable`1 apiDescriptions, SchemaRepository schemaRepository) |
||||||
|
at Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenerator.GetSwagger(String documentName, String host, String basePath) |
||||||
|
at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) |
||||||
|
at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) |
||||||
|
AsyncMethodBuilderCore.Start => <Invoke>d__9.MoveNext => DiagnosticsLoggerExtensions.UnhandledException |
||||||
|
|
@ -0,0 +1,6 @@ |
|||||||
|
17:02:00 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
17:02:00 | Info | Hosting environment: Development |
||||||
|
17:02:00 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
17:08:03 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
17:08:03 | Info | Hosting environment: Development |
||||||
|
17:08:03 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
@ -0,0 +1,13 @@ |
|||||||
|
14:20:00 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
14:20:00 | Info | Hosting environment: Development |
||||||
|
14:20:00 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
14:59:14 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
14:59:14 | Info | Hosting environment: Development |
||||||
|
14:59:14 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
16:08:59 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
16:08:59 | Info | Hosting environment: Development |
||||||
|
16:08:59 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
16:09:00 | Error | An unhandled exception has occurred while executing the request. |
||||||
|
16:09:31 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
16:09:31 | Info | Hosting environment: Development |
||||||
|
16:09:31 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
@ -0,0 +1,30 @@ |
|||||||
|
16:29:54 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
16:29:54 | Info | Hosting environment: Development |
||||||
|
16:29:54 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
16:31:12 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
16:31:12 | Info | Hosting environment: Development |
||||||
|
16:31:12 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
16:41:09 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
16:41:09 | Info | Hosting environment: Development |
||||||
|
16:41:09 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
17:23:07 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
17:23:07 | Info | Hosting environment: Development |
||||||
|
17:23:07 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
17:23:08 | Error | An unhandled exception has occurred while executing the request. |
||||||
|
17:24:55 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
17:24:55 | Info | Hosting environment: Development |
||||||
|
17:24:55 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
17:25:12 | Info | Start processing HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=482625 |
||||||
|
17:25:12 | Info | Sending HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=482625 |
||||||
|
17:25:12 | Info | Received HTTP response after 775.7383ms - OK |
||||||
|
17:25:12 | Info | End processing HTTP request after 800.4319ms - OK |
||||||
|
17:26:41 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
17:26:41 | Info | Hosting environment: Development |
||||||
|
17:26:42 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
17:26:57 | Info | Start processing HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=552422 |
||||||
|
17:26:57 | Info | Sending HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=552422 |
||||||
|
17:27:49 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
17:27:49 | Info | Hosting environment: Development |
||||||
|
17:27:49 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
17:28:05 | Info | Start processing HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=741943 |
||||||
|
17:28:05 | Info | Sending HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=741943 |
@ -0,0 +1,103 @@ |
|||||||
|
09:56:01 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
09:56:01 | Info | Hosting environment: Development |
||||||
|
09:56:01 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
09:56:17 | Info | Start processing HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=781886 |
||||||
|
09:56:17 | Info | Sending HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=781886 |
||||||
|
09:56:18 | Info | Received HTTP response after 795.0085ms - OK |
||||||
|
09:56:18 | Info | End processing HTTP request after 820.831ms - OK |
||||||
|
09:57:09 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
09:57:09 | Info | Hosting environment: Development |
||||||
|
09:57:09 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
09:57:20 | Info | Start processing HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=835601 |
||||||
|
09:57:20 | Info | Sending HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=835601 |
||||||
|
09:57:21 | Info | Received HTTP response after 655.951ms - OK |
||||||
|
09:57:21 | Info | End processing HTTP request after 689.1809ms - OK |
||||||
|
10:09:02 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
10:09:02 | Info | Hosting environment: Development |
||||||
|
10:09:02 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
10:09:15 | Info | Start processing HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=156967 |
||||||
|
10:09:15 | Info | Sending HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=156967 |
||||||
|
10:09:15 | Info | Received HTTP response after 839.5721ms - OK |
||||||
|
10:09:15 | Info | End processing HTTP request after 862.6124ms - OK |
||||||
|
10:10:04 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
10:10:04 | Info | Hosting environment: Development |
||||||
|
10:10:04 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
10:10:15 | Info | Start processing HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=397299 |
||||||
|
10:10:15 | Info | Sending HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=397299 |
||||||
|
10:10:16 | Info | Received HTTP response after 683.3551ms - OK |
||||||
|
10:10:16 | Info | End processing HTTP request after 704.156ms - OK |
||||||
|
10:10:42 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
10:10:43 | Info | Hosting environment: Development |
||||||
|
10:10:43 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
10:10:54 | Info | Start processing HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=343204 |
||||||
|
10:10:54 | Info | Sending HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=343204 |
||||||
|
10:10:55 | Info | Received HTTP response after 474.2142ms - OK |
||||||
|
10:10:55 | Info | End processing HTTP request after 508.0662ms - OK |
||||||
|
10:17:21 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
10:17:21 | Info | Hosting environment: Development |
||||||
|
10:17:21 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
10:17:33 | Info | Start processing HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=251544 |
||||||
|
10:17:33 | Info | Sending HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=251544 |
||||||
|
10:17:33 | Info | Received HTTP response after 738.7785ms - OK |
||||||
|
10:17:33 | Info | End processing HTTP request after 772.3697ms - OK |
||||||
|
10:19:46 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
10:19:46 | Info | Hosting environment: Development |
||||||
|
10:19:46 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
10:20:14 | Info | Start processing HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=199139 |
||||||
|
10:20:14 | Info | Sending HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=199139 |
||||||
|
10:20:15 | Info | Received HTTP response after 675.8955ms - OK |
||||||
|
10:20:15 | Info | End processing HTTP request after 698.8691ms - OK |
||||||
|
10:26:02 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
10:26:02 | Info | Hosting environment: Development |
||||||
|
10:26:02 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
10:28:24 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
10:28:24 | Info | Hosting environment: Development |
||||||
|
10:28:24 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
10:29:37 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
10:29:37 | Info | Hosting environment: Development |
||||||
|
10:29:37 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
10:29:49 | Info | Start processing HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=934174 |
||||||
|
10:29:49 | Info | Sending HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=934174 |
||||||
|
10:29:50 | Info | Received HTTP response after 720.4541ms - OK |
||||||
|
10:29:50 | Info | End processing HTTP request after 751.7425ms - OK |
||||||
|
10:36:18 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
10:36:18 | Info | Hosting environment: Development |
||||||
|
10:36:18 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
10:36:19 | Error | An unhandled exception has occurred while executing the request. |
||||||
|
10:36:42 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
10:36:42 | Info | Hosting environment: Development |
||||||
|
10:36:42 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
10:41:26 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
10:41:26 | Info | Hosting environment: Development |
||||||
|
10:41:26 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
10:41:51 | Info | Start processing HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=213003 |
||||||
|
10:41:51 | Info | Sending HTTP request POST http://wx.hhzyy.com/micro/api/smsHelp?callNo=xbd_code_001&tel=18206787486&code=213003 |
||||||
|
10:41:51 | Info | Received HTTP response after 726.0046ms - OK |
||||||
|
10:41:51 | Info | End processing HTTP request after 745.5751ms - OK |
||||||
|
14:05:42 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
14:05:42 | Info | Hosting environment: Development |
||||||
|
14:05:42 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
15:51:46 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
15:51:46 | Info | Hosting environment: Development |
||||||
|
15:51:46 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
15:53:19 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
15:53:19 | Info | Hosting environment: Development |
||||||
|
15:53:19 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
16:56:21 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
16:56:21 | Info | Hosting environment: Development |
||||||
|
16:56:21 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
16:59:39 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
16:59:39 | Info | Hosting environment: Development |
||||||
|
16:59:39 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
17:00:20 | Error | An unhandled exception has occurred while executing the request. |
||||||
|
17:05:39 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
17:05:39 | Info | Hosting environment: Development |
||||||
|
17:05:39 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
17:23:12 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
17:23:12 | Info | Hosting environment: Development |
||||||
|
17:23:12 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
17:23:12 | Error | An unhandled exception has occurred while executing the request. |
||||||
|
17:23:32 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
17:23:32 | Info | Hosting environment: Development |
||||||
|
17:23:32 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
17:26:11 | Error | An unhandled exception has occurred while executing the request. |
@ -0,0 +1,10 @@ |
|||||||
|
09:59:43 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
09:59:44 | Info | Hosting environment: Development |
||||||
|
09:59:44 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
15:57:26 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
15:57:26 | Info | Hosting environment: Development |
||||||
|
15:57:26 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
||||||
|
15:57:27 | Error | An unhandled exception has occurred while executing the request. |
||||||
|
15:57:44 | Info | Application started. Press Ctrl+C to shut down. |
||||||
|
15:57:44 | Info | Hosting environment: Development |
||||||
|
15:57:44 | Info | Content root path: C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue