Preparing mqtt
This commit is contained in:
parent
f1c1ad69cc
commit
b87d90e5a4
@ -30,6 +30,10 @@
|
|||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
|
<PackageReference Include="MQTTnet" Version="3.0.13" />
|
||||||
|
<PackageReference Include="MQTTnet.AspNetCore" Version="3.0.13" />
|
||||||
|
<PackageReference Include="NLog" Version="4.7.5" />
|
||||||
|
<PackageReference Include="NLog.Web" Version="4.9.3" />
|
||||||
<PackageReference Include="NLog.Web.AspNetCore" Version="4.9.3" />
|
<PackageReference Include="NLog.Web.AspNetCore" Version="4.9.3" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
using Birdmap.API;
|
|
||||||
using Birdmap.DAL;
|
using Birdmap.DAL;
|
||||||
using Microsoft.AspNetCore.Hosting;
|
using Microsoft.AspNetCore.Hosting;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
@ -8,7 +7,7 @@ using NLog;
|
|||||||
using NLog.Web;
|
using NLog.Web;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Birdmap
|
namespace Birdmap.API
|
||||||
{
|
{
|
||||||
public class Program
|
public class Program
|
||||||
{
|
{
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
using AutoMapper;
|
using AutoMapper;
|
||||||
using Birdmap.API;
|
|
||||||
using Birdmap.API.Middlewares;
|
using Birdmap.API.Middlewares;
|
||||||
using Birdmap.BLL;
|
using Birdmap.BLL;
|
||||||
using Birdmap.DAL;
|
using Birdmap.DAL;
|
||||||
@ -13,7 +12,7 @@ using Microsoft.Extensions.Hosting;
|
|||||||
using Microsoft.IdentityModel.Tokens;
|
using Microsoft.IdentityModel.Tokens;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace Birdmap
|
namespace Birdmap.API
|
||||||
{
|
{
|
||||||
public class Startup
|
public class Startup
|
||||||
{
|
{
|
||||||
|
@ -14,7 +14,10 @@
|
|||||||
<!-- the targets to write to -->
|
<!-- the targets to write to -->
|
||||||
<targets async="true">
|
<targets async="true">
|
||||||
<default-target-parameters xsi:type="File" keepFileOpen="false" maxArchiveFiles="10" archiveAboveSize="1048576"/>
|
<default-target-parameters xsi:type="File" keepFileOpen="false" maxArchiveFiles="10" archiveAboveSize="1048576"/>
|
||||||
<target xsi:type="File" name="allfile" fileName="${basedir}Log/birdmap-all-${shortdate}.log"
|
<target xsi:type="File" name="allFile" fileName="${basedir}Log/birdmap-all-${shortdate}.log"
|
||||||
|
layout="${longdate} [${event-properties:item=EventId_Id}] ${uppercase:${level}} ${logger} - ${message} ${exception:format=tostring}" />
|
||||||
|
|
||||||
|
<target xsi:type="File" name="mqttFile" fileName="${basedir}Log/birdmap-mqtt-${shortdate}.log"
|
||||||
layout="${longdate} [${event-properties:item=EventId_Id}] ${uppercase:${level}} ${logger} - ${message} ${exception:format=tostring}" />
|
layout="${longdate} [${event-properties:item=EventId_Id}] ${uppercase:${level}} ${logger} - ${message} ${exception:format=tostring}" />
|
||||||
|
|
||||||
<!-- another file log, only own logs. Uses some ASP.NET core renderers -->
|
<!-- another file log, only own logs. Uses some ASP.NET core renderers -->
|
||||||
@ -25,11 +28,14 @@
|
|||||||
<!-- rules to map from logger name to target +-->
|
<!-- rules to map from logger name to target +-->
|
||||||
<rules>
|
<rules>
|
||||||
<!--All logs, including from Microsoft-->
|
<!--All logs, including from Microsoft-->
|
||||||
<logger name="*" minlevel="Trace" writeTo="allfile" />
|
<logger name="*" minlevel="Trace" writeTo="allFile" />
|
||||||
|
|
||||||
<!--Skip non-critical Microsoft logs and so log only own logs-->
|
<!--Skip non-critical Mqtt logs-->
|
||||||
|
<logger name="*.MqttDevicesController.*" minlevel="Trace" maxlevel="Warning" writeTo="mqttFile"/>
|
||||||
|
|
||||||
|
<!--Skip non-critical Microsoft logs-->
|
||||||
<logger name="Microsoft.*" maxlevel="Info" final="true" />
|
<logger name="Microsoft.*" maxlevel="Info" final="true" />
|
||||||
<!-- BlackHole without writeTo -->
|
|
||||||
<logger name="*" minlevel="Trace" writeTo="ownFile" />
|
<logger name="*" minlevel="Trace" writeTo="ownFile" />
|
||||||
</rules>
|
</rules>
|
||||||
</nlog>
|
</nlog>
|
Loading…
Reference in New Issue
Block a user