appsettings.Development.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "aip": {
  3. "AppName": "AIP Gateway RESTFull Service",
  4. "AppVersion": "1.0.0.0",
  5. "ClientId": "0e225915-3be3-419c-aa04-284d7de5e16b",
  6. "TenantId": "2e58414a-c6ae-43ff-aaf5-45ab8b78a404",
  7. "MipData": "App_Data\\mip_data",
  8. "LoginType": "authLoginCert",
  9. "Domain": "AIP.Gateway",
  10. "EMail": "SeungHo@kangfamily.site",
  11. "SecretValue": "CvW8Q~0iANtLN1Y2EXR_nVyYb_tQTDwjW-Z7Ndg3",
  12. "CertThumbPrint": "C:\\DEV\\SOLUTION\\IIS\\OpenSSL\\mip\\mip_gateway.pfx",
  13. "CertThumbPrintxx": "EFE33B4F85AE0877A16D6B8471FEB7E6B4E2BD8D"
  14. },
  15. "Serilog": {
  16. "Using": [ "Serilog.Sinks.Console" ],
  17. "MinimumLevel": {
  18. "Default": "Debug",
  19. "Override": {
  20. "Microsoft": "Debug",
  21. "Microsoft.EntityFrameworkCore": "Warning",
  22. "System": "Debug"
  23. }
  24. },
  25. "Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId" ],
  26. "WriteTo": [
  27. {
  28. "Name": "Console",
  29. "Args": {
  30. "theme": "Serilog.Sinks.SystemConsole.Themes.AnsiConsoleTheme::Code, Serilog.Sinks.Console",
  31. "outputTemplate": "[{Timestamp:HH:mm:ss} {Level:u3}] {Message:lj} ({SourceContext}){NewLine}{Exception}"
  32. }
  33. },
  34. {
  35. "Name": "File",
  36. "Args": {
  37. "path": "../_logs-ApiWithMutlipleApis.txt",
  38. "outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} [{Level}] [{SourceContext}] [{EventId}] {Message}{NewLine}{Exception}",
  39. "rollOnFileSizeLimit": true,
  40. "fileSizeLimitBytes": 4194304,
  41. "retainedFileCountLimit": 5
  42. }
  43. }
  44. ]
  45. },
  46. "Logging": {
  47. "LogLevel": {
  48. "Default": "Information",
  49. "Microsoft.AspNetCore": "Warning"
  50. }
  51. }
  52. }