usertest
jianghaiqing 4 months ago
commit 0ef0d5393d

6
.gitignore vendored

@ -56,3 +56,9 @@ bin-release/
/ds-wms-service/DS.WMS.TaskApi/LinkAttach/bcfiles
/ds-wms-service/DS.WMS.TaskApi/LinkAttach/bcnoticefiles
/ds-wms-service/DS.WMS.OpApi/LinkAttach
/ds-wms-service/DS.WMS.PrintApi/wwwroot/PrintTempFile
/ds-wms-service/DS.WMS.MainApi/wwwroot/LinkAttach
/ds-wms-service/DS.WMS.MainApi/Properties/PublishProfiles/FolderProfile.pubxml.user
/ds-wms-service/DS.WMS.MainApi/Logs/internal-nlog.txt
/ds-wms-service/DS.WMS.OpApi/Properties/PublishProfiles/FolderProfile.pubxml.user
/ds-wms-service/DS.WMS.OpApi/Logs/internal-nlog.txt

@ -154,6 +154,36 @@ public class RequestHelper
}
}
}
public static async Task<string> PostJosnAsyncByToken(string url, string parameter,string token)
{
using (var client = new HttpClient())
{
//var data = new StringContent("param1=value1&param2=value2", Encoding.UTF8, "application/x-www-form-urlencoded");
var data = new StringContent(parameter, Encoding.UTF8, "application/json");
//_logger.LogWarning($"data:{data.ToJsonString()}parameter{parameter}");
//添加header参数
client.DefaultRequestHeaders.Add("Authorization", "Bearer "+ token);
//foreach (var header in headers)
//{
// client.DefaultRequestHeaders.Add(header.Key, header.Value);
//}
//_logger.LogWarning($"header:{client.DefaultRequestHeaders.ToJsonString()}");
try
{
var response = await client.PostAsync(url, data);
response.EnsureSuccessStatusCode();
var responseBody = await response.Content.ReadAsStringAsync();
return responseBody;
}
catch (HttpRequestException e)
{
throw new Exception(e.Message);
}
}
}
/// <summary>
/// http异步请求
/// </summary>

@ -189,4 +189,11 @@ public interface ISeaExportService
/// <param name="req"></param>
/// <returns></returns>
public Task<DataResult<string>> SendShippingOrderEmail(SendShippingOrderReq req);
/// <summary>
/// 打印托书
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
public Task<DataResult> PrintShippingOrderPDF(string id);
}

@ -9,12 +9,14 @@ using DS.WMS.Core.Op.Dtos;
using DS.WMS.Core.Op.EDI;
using DS.WMS.Core.Op.Entity;
using DS.WMS.Core.Sys.Entity;
using LanguageExt.Common;
using Mapster;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using NPOI.HSSF.UserModel;
using NPOI.SS.UserModel;
using Org.BouncyCastle.Ocsp;
using System.Collections.Specialized;
using System.Runtime.InteropServices;
using System.Text.RegularExpressions;
@ -26,6 +28,50 @@ namespace DS.WMS.Core.Op.Method
/// </summary>
public partial class SeaExportService
{
/// <summary>
/// 打印托书
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
public async Task<DataResult> PrintShippingOrderPDF(string id)
{
var tenantDb = saasService.GetBizDbScopeById(user.TenantId);
var book = await tenantDb.Queryable<SeaExport>().FirstAsync(x => x.Id == long.Parse(id));
if (book == null)
{
return await Task.FromResult(DataResult.Failed("未找到订舱数据"));
}
var template = await db.Queryable<SysPrintTemplate>().FirstAsync(x => x.TemplateCode == "bill_of_lading");
if (template == null)
{
return await Task.FromResult(DataResult.Failed("未找到托书模板"));
}
var url = AppSetting.Configuration["PrintService:LocalPrintUrl"];
if (url.IsNull())
return await Task.FromResult(DataResult.Failed("未配置本地打印地址"));
var req = new Module.PrintModule.OpenJsonPrintReq
{
TemplateId = template.Id,
PrintType = "1",
JsonDataStr = ""
};
var token = user.GetToken();
var res = await RequestHelper.PostJosnAsyncByToken(url, req.ToJson(),token);
//var result = JsonConvert.DeserializeObject<DataResult>(res);
var result = JObject.Parse(res);
if (result.GetBooleanValue("succeeded"))
{
return await Task.FromResult(DataResult.Successed("打印托书成功",result.GetStringValue("data"),MultiLanguageConst.DataQuerySuccess));
}
else
{
return await Task.FromResult(DataResult.Failed(result.GetStringValue("message")));
}
}
/// <summary>
/// 发送托书
/// </summary>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<NameOfLastUsedPublishProfile>D:\Source\Repos\DS8\ds-wms-service\DS.WMS.MainApi\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile>
<NameOfLastUsedPublishProfile>D:\Code\DS\ds8-solution-pro\ds-wms-service\DS.WMS.MainApi\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile>
</PropertyGroup>
</Project>

File diff suppressed because it is too large Load Diff

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
此文件由 Web 项目的发布/打包过程使用。可以通过编辑此 MSBuild 文件
自定义此过程的行为。为了解与此相关的更多内容,请访问 https://go.microsoft.com/fwlink/?LinkID=208121。
-->
<Project>
<PropertyGroup>
<_PublishTargetUrl>D:\Code\PublishCopy\ds8-mainapi</_PublishTargetUrl>
<History>True|2024-07-24T08:48:30.7465251Z||;True|2024-07-24T09:40:52.9333341+08:00||;True|2024-07-24T09:32:35.6165520+08:00||;True|2024-07-19T12:03:03.1399057+08:00||;True|2024-07-19T11:47:36.2698405+08:00||;True|2024-07-18T15:59:36.7010783+08:00||;True|2024-07-16T18:17:43.9220347+08:00||;True|2024-06-18T17:36:34.9035076+08:00||;True|2024-06-18T16:25:54.2461596+08:00||;True|2024-06-18T10:09:37.3872162+08:00||;True|2024-06-18T10:00:43.4402179+08:00||;True|2024-06-18T08:55:07.3014083+08:00||;True|2024-06-18T08:40:51.6182342+08:00||;True|2024-06-13T19:48:34.0429148+08:00||;True|2024-06-13T19:09:39.6804400+08:00||;True|2024-06-13T15:41:56.9502735+08:00||;True|2024-06-13T15:23:59.4555910+08:00||;True|2024-06-13T15:12:55.6093356+08:00||;True|2024-06-11T17:08:01.8930314+08:00||;True|2024-06-07T15:23:11.1389680+08:00||;True|2024-06-07T10:23:59.6079620+08:00||;True|2024-06-06T17:42:56.1843783+08:00||;True|2024-06-04T14:20:46.7742295+08:00||;True|2024-05-31T17:57:35.6858600+08:00||;True|2024-05-31T15:25:20.8503086+08:00||;True|2024-05-30T17:22:52.2563382+08:00||;True|2024-05-30T17:05:35.7504154+08:00||;True|2024-05-29T17:17:39.6966826+08:00||;</History>
<LastFailureDetails />
</PropertyGroup>
</Project>

@ -429,4 +429,17 @@ public class SeaExportController : ApiController
var res = await _invokeService.SendShippingOrderEmail(req);
return res;
}
/// <summary>
/// 打印托书
/// </summary>
/// <param name="id">业务Id</param>
/// <returns></returns>
[HttpGet]
[Route("PrintShippingOrderPDF")]
public async Task<DataResult> PrintShippingOrderPDF([FromQuery] string id)
{
var res = await _invokeService.PrintShippingOrderPDF(id);
return res;
}
}

@ -1,826 +0,0 @@
2024-04-15 15:00:48.5171 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-04-15 15:00:48.5427 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-04-15 15:00:48.5427 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-04-15 15:00:48.5807 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-04-15 15:00:48.6000 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-04-15 15:00:48.6000 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-04-15 15:00:48.6381 Info Configuration initialized.
2024-04-15 15:03:35.2260 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-04-15 15:03:35.3087 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-04-15 15:03:35.3264 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-04-15 15:03:35.3876 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-04-15 15:03:35.4222 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-04-15 15:03:35.4429 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-04-15 15:03:35.4753 Info Configuration initialized.
2024-04-15 15:09:02.9155 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-04-15 15:09:03.0128 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-04-15 15:09:03.0305 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-04-15 15:09:03.0709 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-04-15 15:09:03.1008 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Release\net8.0\nlog.config
2024-04-15 15:09:03.1008 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-04-15 15:09:03.1384 Info Configuration initialized.
2024-04-15 15:09:48.7695 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-04-15 15:09:48.8119 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-04-15 15:09:48.8274 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-04-15 15:09:48.8717 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-04-15 15:09:48.9040 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-04-15 15:09:48.9178 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-04-15 15:09:48.9450 Info Configuration initialized.
2024-04-22 15:37:58.4792 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-04-22 15:37:58.5144 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-04-22 15:37:58.5273 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-04-22 15:37:58.5617 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-04-22 15:37:58.5791 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-04-22 15:37:58.5884 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-04-22 15:37:58.6050 Info Configuration initialized.
2024-04-22 15:45:41.0122 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-04-22 15:45:41.0571 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-04-22 15:45:41.0721 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-04-22 15:45:41.1152 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-04-22 15:45:41.1512 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-04-22 15:45:41.1789 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-04-22 15:45:41.2096 Info Configuration initialized.
2024-04-25 11:52:12.8989 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-04-25 11:52:12.9416 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-04-25 11:52:12.9562 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-04-25 11:52:12.9944 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-04-25 11:52:13.0239 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-04-25 11:52:13.0379 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-04-25 11:52:13.0611 Info Configuration initialized.
2024-04-25 16:18:45.1294 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-04-25 16:18:45.1533 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-04-25 16:18:45.1608 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-04-25 16:18:45.1821 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-04-25 16:18:45.1967 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-04-25 16:18:45.2035 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-04-25 16:18:45.2035 Info Configuration initialized.
2024-04-25 16:26:37.5355 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-04-25 16:26:37.5567 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-04-25 16:26:37.5648 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-04-25 16:26:37.5829 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-04-25 16:26:37.5966 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-04-25 16:26:37.5966 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-04-25 16:26:37.6146 Info Configuration initialized.
2024-05-15 13:39:29.1230 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-15 13:39:29.1805 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-15 13:39:29.1991 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-15 13:39:29.2454 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-15 13:39:29.2837 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-15 13:39:29.3013 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-15 13:39:29.3325 Info Configuration initialized.
2024-05-20 15:30:34.8145 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-20 15:30:34.8416 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-20 15:30:34.8416 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-20 15:30:34.8774 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-20 15:30:34.9017 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-20 15:30:34.9119 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-20 15:30:34.9317 Info Configuration initialized.
2024-05-20 15:33:36.4001 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-20 15:33:36.4444 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-20 15:33:36.4618 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-20 15:33:36.5052 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-20 15:33:36.5294 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-20 15:33:36.5294 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-20 15:33:36.5646 Info Configuration initialized.
2024-05-20 16:18:02.4625 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-20 16:18:02.5478 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-20 16:18:02.5914 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-20 16:18:02.7548 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-20 16:18:02.8232 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-20 16:18:02.8417 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-20 16:18:02.8731 Info Configuration initialized.
2024-05-20 16:20:35.0280 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-20 16:20:35.0938 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-20 16:20:35.1176 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-20 16:20:35.1620 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-20 16:20:35.1879 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-20 16:20:35.2035 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-20 16:20:35.2289 Info Configuration initialized.
2024-05-21 14:43:55.6958 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-21 14:43:55.7321 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-21 14:43:55.7445 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-21 14:43:55.7767 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-21 14:43:55.8036 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-21 14:43:55.8036 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-21 14:43:55.8362 Info Configuration initialized.
2024-05-21 14:48:42.3616 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-21 14:48:42.4285 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-21 14:48:42.4478 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-21 14:48:42.5838 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-21 14:48:42.6506 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-21 14:48:42.6862 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-21 14:48:42.7409 Info Configuration initialized.
2024-05-21 14:55:50.3527 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-21 14:55:50.4079 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-21 14:55:50.4942 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-21 14:55:50.6263 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-21 14:55:50.6654 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-21 14:55:50.7335 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-21 14:55:50.7741 Info Configuration initialized.
2024-05-21 15:04:07.4140 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-21 15:04:07.4573 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-21 15:04:07.4780 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-21 15:04:07.5206 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-21 15:04:07.5543 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-21 15:04:07.5713 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-21 15:04:07.5944 Info Configuration initialized.
2024-05-21 18:09:49.4307 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-21 18:09:49.4786 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-21 18:09:49.4946 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-21 18:09:49.5383 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-21 18:09:49.5712 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-21 18:09:49.5876 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-21 18:09:49.6178 Info Configuration initialized.
2024-05-22 14:54:32.8022 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-22 14:54:32.8562 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-22 14:54:32.8708 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-22 14:54:32.9005 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-22 14:54:32.9216 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-22 14:54:32.9334 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-22 14:54:32.9483 Info Configuration initialized.
2024-05-23 16:50:26.8653 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-23 16:50:26.8952 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-23 16:50:26.8952 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-23 16:50:26.9420 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-23 16:50:26.9648 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-23 16:50:26.9768 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-23 16:50:27.0015 Info Configuration initialized.
2024-05-23 17:04:19.5370 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-23 17:04:19.5785 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-23 17:04:19.5970 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-23 17:04:19.6431 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-23 17:04:19.6761 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-23 17:04:19.7076 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-23 17:04:19.7527 Info Configuration initialized.
2024-05-23 17:08:27.3192 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-23 17:08:27.3718 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-23 17:08:27.3892 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-23 17:08:27.4313 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-23 17:08:27.4671 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-23 17:08:27.4869 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-23 17:08:27.5209 Info Configuration initialized.
2024-05-23 17:21:25.4639 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-23 17:21:25.4956 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-23 17:21:25.5078 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-23 17:21:25.5339 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-23 17:21:25.5489 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-23 17:21:25.5574 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-23 17:21:25.5735 Info Configuration initialized.
2024-05-27 10:41:33.4483 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-27 10:41:33.4877 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-27 10:41:33.4986 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-27 10:41:33.5293 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-27 10:41:33.5441 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-27 10:41:33.5514 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-27 10:41:33.5514 Info Configuration initialized.
2024-05-27 11:21:28.1678 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-27 11:21:28.2190 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-27 11:21:28.2337 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-27 11:21:28.2603 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-27 11:21:28.2754 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-27 11:21:28.2754 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-27 11:21:28.3040 Info Configuration initialized.
2024-05-27 11:39:17.6912 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-27 11:39:17.7265 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-27 11:39:17.7411 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-27 11:39:17.7710 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-27 11:39:17.7992 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-27 11:39:17.8149 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-27 11:39:17.8424 Info Configuration initialized.
2024-05-27 11:49:48.2515 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-27 11:49:48.3263 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-27 11:49:48.3461 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-27 11:49:48.3822 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-27 11:49:48.4070 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-27 11:49:48.4208 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-27 11:49:48.4466 Info Configuration initialized.
2024-05-27 13:53:34.7572 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-27 13:53:34.7948 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-27 13:53:34.8056 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-27 13:53:34.8304 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-27 13:53:34.8484 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-27 13:53:34.8591 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-27 13:53:34.8760 Info Configuration initialized.
2024-05-27 14:01:28.7635 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-27 14:01:28.7955 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-27 14:01:28.8087 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-27 14:01:28.8407 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-27 14:01:28.8625 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-27 14:01:28.8750 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-27 14:01:28.8969 Info Configuration initialized.
2024-05-27 14:14:19.4648 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-27 14:14:19.4937 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-27 14:14:19.4937 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-27 14:14:19.5241 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-27 14:14:19.5416 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-27 14:14:19.5520 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-27 14:14:19.5759 Info Configuration initialized.
2024-05-27 15:00:30.3377 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-27 15:00:30.4066 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-27 15:00:30.4288 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-27 15:00:30.4866 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-27 15:00:30.5178 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-27 15:00:30.5318 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-27 15:00:30.5615 Info Configuration initialized.
2024-05-27 15:26:03.2600 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-27 15:26:03.2851 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-27 15:26:03.2927 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-27 15:26:03.3114 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-27 15:26:03.3238 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-27 15:26:03.3238 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-27 15:26:03.3428 Info Configuration initialized.
2024-05-27 15:28:48.9328 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-27 15:28:49.0002 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-27 15:28:49.0194 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-27 15:28:49.0864 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-27 15:28:49.1129 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-27 15:28:49.1301 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-27 15:28:49.1821 Info Configuration initialized.
2024-05-27 15:31:41.3391 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-27 15:31:41.3984 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-27 15:31:41.4161 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-27 15:31:41.4467 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-27 15:31:41.4802 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-27 15:31:41.4984 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-27 15:31:41.5343 Info Configuration initialized.
2024-05-27 15:46:08.7286 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-27 15:46:08.7498 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-27 15:46:08.7585 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-27 15:46:08.7864 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-27 15:46:08.7864 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-27 15:46:08.8074 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-27 15:46:08.8237 Info Configuration initialized.
2024-05-27 15:49:04.6660 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-27 15:49:04.9140 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-27 15:49:04.9319 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-27 15:49:05.1179 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-27 15:49:05.1836 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-27 15:49:05.2014 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-27 15:49:05.2426 Info Configuration initialized.
2024-05-27 15:54:45.1177 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-27 15:54:45.1540 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-27 15:54:45.1629 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-27 15:54:45.1920 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-27 15:54:45.2214 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-27 15:54:45.2391 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-27 15:54:45.2725 Info Configuration initialized.
2024-05-28 11:15:11.7866 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-05-28 11:15:11.8053 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-05-28 11:15:11.8053 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-05-28 11:15:11.8257 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-05-28 11:15:11.8328 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Source\Repos\DS8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-05-28 11:15:11.8328 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-05-28 11:15:11.8328 Info Configuration initialized.
2024-06-03 15:14:43.0858 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-06-03 15:14:43.1247 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-06-03 15:14:43.1393 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-06-03 15:14:43.1760 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-06-03 15:14:43.2026 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-06-03 15:14:43.2191 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-06-03 15:14:43.2480 Info Configuration initialized.
2024-07-08 14:41:44.8708 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-08 14:41:44.8901 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-08 14:41:44.8901 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-08 14:41:44.9314 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-08 14:41:44.9314 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution-pro\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-08 14:41:44.9483 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-08 14:41:44.9483 Info Configuration initialized.
2024-07-08 14:42:17.8391 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-08 14:42:17.8633 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-08 14:42:17.8633 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-08 14:42:17.8826 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-08 14:42:17.8887 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution-pro\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-08 14:42:17.8887 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-08 14:42:17.9003 Info Configuration initialized.
2024-07-08 14:47:13.5787 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-08 14:47:13.6040 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-08 14:47:13.6040 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-08 14:47:13.6294 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-08 14:47:13.6405 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution-pro\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-08 14:47:13.6405 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-08 14:47:13.6566 Info Configuration initialized.
2024-07-08 15:05:25.7779 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-08 15:05:25.8097 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-08 15:05:25.8097 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-08 15:05:25.8498 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-08 15:05:25.8638 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\ds8-solution-pro\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-08 15:05:25.8734 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-08 15:05:25.8856 Info Configuration initialized.
2024-07-15 11:10:14.6807 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-15 11:10:14.6807 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-15 11:10:14.7001 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-15 11:10:14.7121 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-15 11:10:14.7121 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-15 11:10:14.7121 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-15 11:10:14.7323 Info Configuration initialized.
2024-07-15 11:20:19.8072 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-15 11:20:19.8072 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-15 11:20:19.8202 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-15 11:20:19.8202 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-15 11:20:19.8381 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-15 11:20:19.8381 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-15 11:20:19.8381 Info Configuration initialized.
2024-07-15 11:24:31.7763 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-15 11:24:31.7763 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-15 11:24:31.7928 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-15 11:24:31.7928 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-15 11:24:31.8141 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-15 11:24:31.8141 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-15 11:24:31.8243 Info Configuration initialized.
2024-07-15 11:55:56.3072 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-15 11:55:56.3072 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-15 11:55:56.3072 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-15 11:55:56.3287 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-15 11:55:56.3287 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-15 11:55:56.3370 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-15 11:55:56.3370 Info Configuration initialized.
2024-07-17 13:35:24.5417 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-17 13:35:24.5552 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-17 13:35:24.5552 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-17 13:35:24.6444 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-17 13:35:24.6552 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-17 13:35:24.6552 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-17 13:35:24.6678 Info Configuration initialized.
2024-07-17 13:36:20.7200 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-17 13:36:20.7312 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-17 13:36:20.7312 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-17 13:36:20.7429 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-17 13:36:20.7429 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-17 13:36:20.7429 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-17 13:36:20.7553 Info Configuration initialized.
2024-07-17 13:59:03.7262 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-17 13:59:03.7262 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-17 13:59:03.7399 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-17 13:59:03.7399 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-17 13:59:03.7399 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-17 13:59:03.7565 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-17 13:59:03.7565 Info Configuration initialized.
2024-07-17 14:01:25.4803 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-17 14:01:25.4922 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-17 14:01:25.4922 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-17 14:01:25.5048 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-17 14:01:25.5048 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-17 14:01:25.5048 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-17 14:01:25.5048 Info Configuration initialized.
2024-07-17 14:24:20.2274 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-17 14:24:20.2393 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-17 14:24:20.2393 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-17 14:24:20.2393 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-17 14:24:20.2572 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-17 14:24:20.2572 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-17 14:24:20.2572 Info Configuration initialized.
2024-07-17 14:44:45.5004 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-17 14:44:45.5124 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-17 14:44:45.5124 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-17 14:44:45.5248 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-17 14:44:45.5248 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-17 14:44:45.5248 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-17 14:44:45.5374 Info Configuration initialized.
2024-07-17 14:47:43.7392 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-17 14:47:43.7545 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-17 14:47:43.7545 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-17 14:47:43.7722 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-17 14:47:43.7722 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-17 14:47:43.7722 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-17 14:47:43.7870 Info Configuration initialized.
2024-07-17 14:49:57.5797 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-17 14:49:57.5940 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-17 14:49:57.5979 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-17 14:49:57.5979 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-17 14:49:57.6144 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-17 14:49:57.6144 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-17 14:49:57.6144 Info Configuration initialized.
2024-07-17 15:14:43.5725 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-17 15:14:43.5908 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-17 15:14:43.5908 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-17 15:14:43.6084 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-17 15:14:43.6164 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-17 15:14:43.6164 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-17 15:14:43.6164 Info Configuration initialized.
2024-07-17 15:26:53.4201 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-17 15:26:53.4332 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-17 15:26:53.4332 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-17 15:26:53.4461 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-17 15:26:53.4461 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-17 15:26:53.4461 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-17 15:26:53.4592 Info Configuration initialized.
2024-07-17 15:36:51.5749 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-17 15:36:51.5894 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-17 15:36:51.5894 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-17 15:36:51.6019 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-17 15:36:51.6019 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-17 15:36:51.6019 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-17 15:36:51.6154 Info Configuration initialized.
2024-07-17 15:54:09.3114 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-17 15:54:09.3375 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-17 15:54:09.3375 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-17 15:54:09.3635 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-17 15:54:09.3799 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-17 15:54:09.3799 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-17 15:54:09.4019 Info Configuration initialized.
2024-07-17 16:10:54.4421 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-17 16:10:54.4421 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-17 16:10:54.4421 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-17 16:10:54.4673 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-17 16:10:54.4673 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-17 16:10:54.4752 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-17 16:10:54.4752 Info Configuration initialized.
2024-07-18 17:00:49.1289 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-18 17:00:49.1289 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-18 17:00:49.1289 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-18 17:00:49.1529 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-18 17:00:49.1529 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-18 17:00:49.1610 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-18 17:00:49.1610 Info Configuration initialized.
2024-07-18 17:01:32.1455 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-18 17:01:32.1455 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-18 17:01:32.1632 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-18 17:01:32.1632 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-18 17:01:32.1808 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-18 17:01:32.1808 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-18 17:01:32.1808 Info Configuration initialized.
2024-07-18 17:02:46.2601 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-18 17:02:46.2723 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-18 17:02:46.2723 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-18 17:02:46.2854 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-18 17:02:46.2854 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-18 17:02:46.2854 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-18 17:02:46.2854 Info Configuration initialized.
2024-07-18 17:03:18.4459 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-18 17:03:18.4613 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-18 17:03:18.4613 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-18 17:03:18.4738 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-18 17:03:18.4738 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-18 17:03:18.4738 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-18 17:03:18.4738 Info Configuration initialized.
2024-07-18 17:05:17.8386 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-18 17:05:17.8501 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-18 17:05:17.8501 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-18 17:05:17.8638 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-18 17:05:17.8638 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-18 17:05:17.8638 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-18 17:05:17.8638 Info Configuration initialized.
2024-07-18 17:06:53.9141 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-18 17:06:53.9312 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-18 17:06:53.9312 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-18 17:06:53.9482 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-18 17:06:53.9482 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-18 17:06:53.9606 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-18 17:06:53.9606 Info Configuration initialized.
2024-07-18 17:08:59.2073 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-18 17:08:59.2277 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-18 17:08:59.2277 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-18 17:08:59.2425 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-18 17:08:59.2425 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-18 17:08:59.2585 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-18 17:08:59.2585 Info Configuration initialized.
2024-07-18 17:11:43.2034 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-18 17:11:43.2174 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-18 17:11:43.2174 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-18 17:11:43.2306 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-18 17:11:43.2306 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-18 17:11:43.2396 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-18 17:11:43.2396 Info Configuration initialized.
2024-07-18 17:12:51.9894 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-18 17:12:51.9894 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-18 17:12:52.0042 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-18 17:12:52.0042 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-18 17:12:52.0042 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-18 17:12:52.0216 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-18 17:12:52.0216 Info Configuration initialized.
2024-07-18 17:15:47.6795 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-18 17:15:47.6795 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-18 17:15:47.6937 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-18 17:15:47.6937 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-18 17:15:47.7084 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-18 17:15:47.7084 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-18 17:15:47.7084 Info Configuration initialized.
2024-07-19 08:36:16.5395 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-19 08:36:16.5558 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-19 08:36:16.5605 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-19 08:36:16.5605 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-19 08:36:16.5781 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-19 08:36:16.5781 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-19 08:36:16.5781 Info Configuration initialized.
2024-07-19 08:45:15.9261 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-19 08:45:15.9380 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-19 08:45:15.9380 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-19 08:45:15.9380 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-19 08:45:15.9565 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-19 08:45:15.9565 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-19 08:45:15.9565 Info Configuration initialized.
2024-07-19 11:37:09.1614 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-19 11:37:09.1744 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-19 11:37:09.1744 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-19 11:37:09.1867 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-19 11:37:09.1867 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-19 11:37:09.1867 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-19 11:37:09.2022 Info Configuration initialized.
2024-07-19 18:57:19.3838 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-19 18:57:19.3975 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-19 18:57:19.3975 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-19 18:57:19.4105 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-19 18:57:19.4105 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-19 18:57:19.4105 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-19 18:57:19.4105 Info Configuration initialized.
2024-07-19 19:28:21.2912 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-19 19:28:21.3048 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-19 19:28:21.3048 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-19 19:28:21.3201 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-19 19:28:21.3268 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-19 19:28:21.3268 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-19 19:28:21.3268 Info Configuration initialized.
2024-07-19 19:30:36.8206 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-19 19:30:36.8359 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-19 19:30:36.8359 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-19 19:30:36.8512 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-19 19:30:36.8580 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-19 19:30:36.8580 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-19 19:30:36.8580 Info Configuration initialized.
2024-07-19 19:36:30.1695 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-19 19:36:30.1843 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-19 19:36:30.1843 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-19 19:36:30.1843 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-19 19:36:30.2039 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-19 19:36:30.2039 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-19 19:36:30.2039 Info Configuration initialized.
2024-07-22 08:37:02.2527 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 08:37:02.2691 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 08:37:02.2691 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 08:37:02.2900 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 08:37:02.2995 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 08:37:02.2995 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 08:37:02.2995 Info Configuration initialized.
2024-07-22 08:56:57.5643 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 08:56:57.5820 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 08:56:57.5820 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 08:56:57.6000 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 08:56:57.6000 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 08:56:57.6124 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 08:56:57.6124 Info Configuration initialized.
2024-07-22 09:00:03.8931 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 09:00:03.8931 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 09:00:03.9080 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 09:00:03.9080 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 09:00:03.9241 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 09:00:03.9241 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 09:00:03.9241 Info Configuration initialized.
2024-07-22 09:20:15.0020 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 09:20:15.0020 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 09:20:15.0172 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 09:20:15.0172 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 09:20:15.0336 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 09:20:15.0336 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 09:20:15.0336 Info Configuration initialized.
2024-07-22 09:34:16.8672 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 09:34:16.8810 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 09:34:16.8810 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 09:34:16.8946 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 09:34:16.8946 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 09:34:16.8946 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 09:34:16.9082 Info Configuration initialized.
2024-07-22 10:30:43.8182 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 10:30:43.8311 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 10:30:43.8311 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 10:30:43.8499 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 10:30:43.8499 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 10:30:43.8615 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 10:30:43.8615 Info Configuration initialized.
2024-07-22 10:32:06.0346 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 10:32:06.0346 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 10:32:06.0346 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 10:32:06.0571 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 10:32:06.0571 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 10:32:06.0653 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 10:32:06.0653 Info Configuration initialized.
2024-07-22 11:02:04.9887 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 11:02:05.0015 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 11:02:05.0015 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 11:02:05.0015 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 11:02:05.0194 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 11:02:05.0194 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 11:02:05.0194 Info Configuration initialized.
2024-07-22 11:04:21.7204 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 11:04:21.7204 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 11:04:21.7364 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 11:04:21.7364 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 11:04:21.7517 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 11:04:21.7517 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 11:04:21.7517 Info Configuration initialized.
2024-07-22 11:37:30.2987 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 11:37:30.2987 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 11:37:30.2987 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 11:37:30.3214 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 11:37:30.3214 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 11:37:30.3298 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 11:37:30.3298 Info Configuration initialized.
2024-07-22 11:42:15.2716 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 11:42:15.2874 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 11:42:15.2874 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 11:42:15.3034 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 11:42:15.3034 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 11:42:15.3169 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 11:42:15.3169 Info Configuration initialized.
2024-07-22 11:48:44.5703 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 11:48:44.5830 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 11:48:44.5830 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 11:48:44.5983 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 11:48:44.5983 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 11:48:44.6142 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 11:48:44.6142 Info Configuration initialized.
2024-07-22 12:03:46.0798 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 12:03:46.0798 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 12:03:46.0798 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 12:03:46.1062 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 12:03:46.1149 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 12:03:46.1149 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 12:03:46.1262 Info Configuration initialized.
2024-07-22 12:05:30.8727 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 12:05:30.8906 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 12:05:30.8940 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 12:05:30.8940 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 12:05:30.9115 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 12:05:30.9115 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 12:05:30.9115 Info Configuration initialized.
2024-07-22 12:38:46.1107 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 12:38:46.1107 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 12:38:46.1268 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 12:38:46.1268 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 12:38:46.1446 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 12:38:46.1446 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 12:38:46.1446 Info Configuration initialized.
2024-07-22 17:44:20.8207 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 17:44:20.8363 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 17:44:20.8363 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 17:44:20.8530 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 17:44:20.8530 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 17:44:20.8626 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 17:44:20.8626 Info Configuration initialized.
2024-07-22 17:51:49.8988 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 17:51:49.9117 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 17:51:49.9117 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 17:51:49.9244 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 17:51:49.9244 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 17:51:49.9244 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 17:51:49.9244 Info Configuration initialized.
2024-07-22 17:55:06.9758 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 17:55:06.9881 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 17:55:06.9881 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 17:55:07.0020 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 17:55:07.0020 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 17:55:07.0020 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 17:55:07.0191 Info Configuration initialized.
2024-07-22 18:15:38.5262 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 18:15:38.5390 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 18:15:38.5390 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 18:15:38.5528 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 18:15:38.5528 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 18:15:38.5528 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 18:15:38.5659 Info Configuration initialized.
2024-07-22 18:23:25.1858 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 18:23:25.1982 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 18:23:25.1982 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 18:23:25.2121 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 18:23:25.2121 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 18:23:25.2121 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 18:23:25.2263 Info Configuration initialized.
2024-07-22 18:32:54.7832 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 18:32:54.7983 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 18:32:54.7983 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 18:32:54.8151 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 18:32:54.8219 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 18:32:54.8219 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 18:32:54.8219 Info Configuration initialized.
2024-07-22 18:34:27.7720 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 18:34:27.7720 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 18:34:27.7861 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 18:34:27.7861 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 18:34:27.7861 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 18:34:27.8037 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 18:34:27.8037 Info Configuration initialized.
2024-07-22 18:36:53.4718 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-22 18:36:53.4718 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-22 18:36:53.4872 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-22 18:36:53.4872 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-22 18:36:53.5029 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-22 18:36:53.5029 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-22 18:36:53.5029 Info Configuration initialized.
2024-07-24 10:39:33.3284 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-24 10:39:33.3499 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-24 10:39:33.3562 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-24 10:39:33.3735 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-24 10:39:33.3842 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-24 10:39:33.3842 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-24 10:39:33.4009 Info Configuration initialized.
2024-07-24 11:42:53.2416 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-24 11:42:53.2594 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-24 11:42:53.2594 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-24 11:42:53.2853 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-24 11:42:53.2981 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-24 11:42:53.3046 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-24 11:42:53.3046 Info Configuration initialized.
2024-07-24 11:53:04.9564 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-24 11:53:04.9683 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-24 11:53:04.9683 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-24 11:53:04.9813 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-24 11:53:04.9813 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-24 11:53:04.9813 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-24 11:53:04.9940 Info Configuration initialized.
2024-07-24 11:56:48.6539 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-24 11:56:48.6666 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-24 11:56:48.6666 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-24 11:56:48.6812 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-24 11:56:48.6812 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-24 11:56:48.6812 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-24 11:56:48.6977 Info Configuration initialized.
2024-07-24 12:13:15.7940 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-24 12:13:15.8109 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-24 12:13:15.8109 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-24 12:13:15.8289 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-24 12:13:15.8361 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-24 12:13:15.8361 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-24 12:13:15.8361 Info Configuration initialized.
2024-07-24 12:46:02.1315 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-24 12:46:02.1542 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-24 12:46:02.1542 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-24 12:46:02.1817 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-24 12:46:02.1817 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-24 12:46:02.1970 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-24 12:46:02.1970 Info Configuration initialized.
2024-07-24 12:55:07.1127 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-24 12:55:07.1250 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-24 12:55:07.1250 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-24 12:55:07.1385 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-24 12:55:07.1385 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-24 12:55:07.1473 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-24 12:55:07.1473 Info Configuration initialized.
2024-07-24 13:38:21.3202 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-24 13:38:21.3470 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-24 13:38:21.3528 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-24 13:38:21.3717 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-24 13:38:21.3863 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-24 13:38:21.3863 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-24 13:38:21.4016 Info Configuration initialized.
2024-07-24 14:07:06.0244 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-24 14:07:06.0410 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-24 14:07:06.0410 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-24 14:07:06.0633 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-24 14:07:06.0764 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-24 14:07:06.0764 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-24 14:07:06.0901 Info Configuration initialized.
2024-07-24 14:08:38.1325 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-24 14:08:38.1325 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-24 14:08:38.1325 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-24 14:08:38.1552 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-24 14:08:38.1552 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-24 14:08:38.1635 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-24 14:08:38.1635 Info Configuration initialized.
2024-07-24 14:14:41.8507 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-24 14:14:41.8507 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-24 14:14:41.8507 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-24 14:14:41.8726 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-24 14:14:41.8726 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-24 14:14:41.8726 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-24 14:14:41.8863 Info Configuration initialized.
2024-07-25 09:55:08.3354 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-25 09:55:08.3354 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-25 09:55:08.3515 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-25 09:55:08.3515 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-25 09:55:08.3711 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Source\Repos\DS8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-25 09:55:08.3711 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-25 09:55:08.3711 Info Configuration initialized.
2024-07-25 09:56:52.6865 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-25 09:56:52.7029 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-25 09:56:52.7029 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-25 09:56:52.7214 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-25 09:56:52.7280 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Source\Repos\DS8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-25 09:56:52.7280 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-25 09:56:52.7280 Info Configuration initialized.
2024-07-25 10:04:30.5148 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-25 10:04:30.5293 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-25 10:04:30.5293 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-25 10:04:30.5484 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-25 10:04:30.5557 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Source\Repos\DS8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-25 10:04:30.5557 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-25 10:04:30.5557 Info Configuration initialized.
2024-07-25 16:11:06.5379 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-25 16:11:06.5602 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-25 16:11:06.5680 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-25 16:11:06.5938 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-25 16:11:06.6047 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=D:\Source\Repos\DS8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-25 16:11:06.6047 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-25 16:11:06.6305 Info Configuration initialized.
2024-07-25 16:35:26.1612 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-25 16:35:26.1790 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-25 16:35:26.1790 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-25 16:35:26.1968 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-25 16:35:26.2067 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-25 16:35:26.2067 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-25 16:35:26.2203 Info Configuration initialized.
2024-07-25 17:01:27.4675 Info Registered target NLog.Targets.FileTarget(Name=allfile)
2024-07-25 17:01:27.4868 Info Registered target NLog.Targets.FileTarget(Name=ownFile-web)
2024-07-25 17:01:27.4868 Info Registered target NLog.Targets.ColoredConsoleTarget(Name=console)
2024-07-25 17:01:27.5029 Info NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c. File version: 5.2.8.2366. Product version: 5.2.8+f586f1341c46fa38aaaff4c641e7f0fa7e813943. GlobalAssemblyCache: False
2024-07-25 17:01:27.5029 Info Validating config: TargetNames=console, ownFile-web, ConfigItems=54, FilePath=E:\MyCode\Dongsheng8\ds-wms-service\DS.WMS.OpApi\bin\Debug\net8.0\nlog.config
2024-07-25 17:01:27.5133 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: allfile
2024-07-25 17:01:27.5133 Info Configuration initialized.

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
此文件由 Web 项目的发布/打包过程使用。可以通过编辑此 MSBuild 文件
自定义此过程的行为。为了解与此相关的更多内容,请访问 https://go.microsoft.com/fwlink/?LinkID=208121。
-->
<Project>
<PropertyGroup>
<_PublishTargetUrl>D:\Code\PublishCopy\ds8-opapi</_PublishTargetUrl>
<History>True|2024-07-26T00:38:01.1621829Z||;True|2024-07-26T08:31:59.9589726+08:00||;True|2024-07-25T17:34:52.7757921+08:00||;True|2024-07-24T19:25:58.0077671+08:00||;True|2024-07-24T18:28:12.1752469+08:00||;True|2024-07-24T18:11:54.2105215+08:00||;True|2024-07-24T18:10:14.9409342+08:00||;True|2024-07-24T17:52:10.3966338+08:00||;True|2024-07-24T16:01:13.8217949+08:00||;True|2024-07-24T15:56:15.7589616+08:00||;True|2024-07-24T15:38:29.2442086+08:00||;True|2024-07-24T14:48:12.2303919+08:00||;True|2024-07-24T14:18:05.5309704+08:00||;True|2024-07-24T12:56:48.1663545+08:00||;True|2024-07-24T08:47:26.1616069+08:00||;True|2024-07-24T08:42:02.7606608+08:00||;True|2024-07-24T08:41:18.4678459+08:00||;False|2024-07-24T08:40:29.5381703+08:00||;False|2024-07-24T08:39:20.2230656+08:00||;True|2024-07-23T15:56:16.8305907+08:00||;True|2024-07-22T16:42:12.1933090+08:00||;True|2024-07-19T18:28:29.1420269+08:00||;True|2024-07-19T15:45:49.1068004+08:00||;True|2024-07-19T15:33:45.3242155+08:00||;False|2024-07-19T15:32:41.9604526+08:00||;True|2024-07-19T13:48:27.9722093+08:00||;False|2024-07-19T13:47:56.7900396+08:00||;True|2024-07-19T11:41:15.4223247+08:00||;True|2024-07-19T08:46:28.8014836+08:00||;True|2024-07-18T19:24:50.4184188+08:00||;True|2024-07-18T19:19:14.7056635+08:00||;True|2024-07-18T19:04:43.5615501+08:00||;True|2024-07-18T18:38:39.1976753+08:00||;True|2024-07-18T18:25:15.6833492+08:00||;True|2024-07-18T18:08:46.3114951+08:00||;True|2024-07-18T17:59:12.5292256+08:00||;True|2024-07-18T16:18:45.8049777+08:00||;True|2024-07-18T16:12:42.9723969+08:00||;True|2024-07-18T16:07:14.1432207+08:00||;True|2024-07-17T17:44:18.4741963+08:00||;True|2024-07-17T17:42:47.2735071+08:00||;True|2024-07-17T16:13:32.9037697+08:00||;True|2024-07-17T15:40:21.2550083+08:00||;True|2024-07-17T14:03:08.1814323+08:00||;True|2024-07-15T13:43:42.6073130+08:00||;True|2024-07-15T11:53:40.6498579+08:00||;True|2024-07-15T11:53:03.1652559+08:00||;True|2024-07-15T11:42:33.0154478+08:00||;True|2024-07-15T10:20:03.3925876+08:00||;True|2024-07-15T10:13:28.1415352+08:00||;True|2024-07-08T14:33:12.6884426+08:00||;True|2024-07-08T09:56:58.4995696+08:00||;</History>
<LastFailureDetails />
</PropertyGroup>
</Project>

@ -59,15 +59,16 @@
"Path": "TempFiles",
"RemainHours": 2
},
"PrintService": {
"IP": "60.209.125.238",
"Port": "3009",
"AccessKey": "1777229107311022080",
"AccessSecret": "d816e6fe938f24e2f205db129d31286a",
"GetModuleListUrl": "/printApi/OpenPrint/GetPrintModuleList",
"GetTemplateListUrl": "/printApi/OpenPrint/GetPrintTemplateList",
"GetJsonPrintInfoUrl": "/printApi/OpenPrint/GetOpenJsonPrintInfo"
},
"PrintService": {
"IP": "60.209.125.238",
"Port": "3009",
"AccessKey": "1777229107311022080",
"AccessSecret": "d816e6fe938f24e2f205db129d31286a",
"GetModuleListUrl": "/printApi/OpenPrint/GetPrintModuleList",
"GetTemplateListUrl": "/printApi/OpenPrint/GetPrintTemplateList",
"GetJsonPrintInfoUrl": "/printApi/OpenPrint/GetOpenJsonPrintInfo",
"LocalPrintUrl": "http://localhost:2999/printApi/OpenPrint/GetOpenJsonPrintInfoAsync"
},
"DjyService": {
"IP": "60.209.125.238",
"Port": "35100",

@ -33,7 +33,7 @@ namespace DS.WMS.PrintApi.Service
var basePath = String.Empty;
var savePath = "wwwroot/PrintTempFile";
var fileName = DateTime.Now.Ticks;
var fileName = DateTime.Now.Ticks + "-" + NumUtil.GetRandomString(3);
var printFileName = $"{fileName}.frx";
var printFile = Path.Combine(savePath, printFileName);
@ -63,6 +63,7 @@ namespace DS.WMS.PrintApi.Service
saveFile = Path.Combine(savePath, printName);
PDFExport pdfExport = new PDFExport();
pdfExport.Export(report, saveFile);
}
else if (req.PrintType == "2")
{
@ -119,7 +120,7 @@ namespace DS.WMS.PrintApi.Service
var basePath = String.Empty;
var savePath = "wwwroot/PrintTempFile";
var fileName = DateTime.Now.Ticks;
var fileName = DateTime.Now.Ticks + "-" + NumUtil.GetRandomString(3);
var printFileName = $"{fileName}.frx";
var printFile = Path.Combine(savePath, printFileName);
@ -149,6 +150,21 @@ namespace DS.WMS.PrintApi.Service
saveFile = Path.Combine(savePath, printName);
PDFExport pdfExport = new PDFExport();
pdfExport.Export(report, saveFile);
#region 处理托书挂载附件
if (template.TemplateCode == "bill_of_lading")
{
System.IO.FileStream file = new System.IO.FileStream(saveFile, FileMode.Open, FileAccess.Read);
var movePath =Path.Combine(AppSetting.Configuration["FileSettings:MovePath"], printName);
using (var fileStream = File.Create(movePath))
{
await file.CopyToAsync(fileStream);
}
file.Close();
}
#endregion
}
else if (req.PrintType == "2")
{

@ -0,0 +1,42 @@
using System;
namespace DS.WMS.PrintApi.Utils
{
public class NumUtil
{
#region 生成随机推荐码
/// <summary>
/// 生成随机数的种子
/// </summary>
/// <returns></returns>
private static int getNewSeed()
{
byte[] rndBytes = new byte[4];
System.Security.Cryptography.RNGCryptoServiceProvider rng =
new System.Security.Cryptography.RNGCryptoServiceProvider();
rng.GetBytes(rndBytes);
return BitConverter.ToInt32(rndBytes, 0);
}
#endregion 生成随机推荐码
/// <summary>
/// 生成随机数
/// </summary>
/// <param name="length">位数</param>
/// <returns></returns>
public static string GetRandomString(int len)
{
string s = "123456789abcdefghijklmnpqrstuvwxyzABCDEFGHIJKLMNPQRSTUVWXYZ";
string reValue = string.Empty;
Random rnd = new Random(getNewSeed());
while (reValue.Length < len)
{
string s1 = s[rnd.Next(0, s.Length)].ToString();
if (reValue.IndexOf(s1) == -1) reValue += s1;
}
return reValue;
}
}
}

@ -24,5 +24,10 @@
"Audience": "vol.core",
"User": "C5ABA9E202D94C43A3CA66002BF77FAF",
"SecretKey": "sdfsdfsrty45634kkhllghtdgdfss345t678fs"
},
"FileSettings": {
"BasePath": "", //使
"MovePath": "D:\\Code\\DS\\ds8-solution-pro\\ds-wms-service\\DS.WMS.MainApi\\wwwroot\\LinkAttach",
"FileType": [ ".xls", ".xlsx", ".pdf", ".jpg", ".png", ".txt", ".pms" ]
}
}

Loading…
Cancel
Save