Skip to content

Commit

Permalink
Log discord server
Browse files Browse the repository at this point in the history
  • Loading branch information
DiFFoZ committed Oct 14, 2020
1 parent 512af8d commit 3ace4cf
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Dummy/Dummy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using OpenMod.API.Plugins;
using OpenMod.Unturned.Plugins;
using System;
using ILogger = Microsoft.Extensions.Logging.ILogger;

[assembly: PluginMetadata("Dummy", Author = "DiFFoZ", DisplayName = "Dummy",
Website = "https://github.com/EvolutionPlugins/Dummy")]
Expand All @@ -16,7 +15,7 @@ namespace Dummy

public class Dummy : OpenModUnturnedPlugin
{
private readonly ILogger m_Logger;
private readonly ILogger<Dummy> m_Logger;
private readonly IDummyProvider m_DummyProvider;

public Dummy(IServiceProvider serviceProvider, ILogger<Dummy> logger, IDummyProvider dummyProvider) : base(serviceProvider)
Expand All @@ -31,7 +30,7 @@ protected override UniTask OnLoadAsync()

m_Logger.LogInformation("Made with <3 by Evolution Plugins");
m_Logger.LogInformation("https://github.com/evolutionplugins \\ https://github.com/diffoz");
m_Logger.LogInformation("Discord: DiFFoZ#6745");
m_Logger.LogInformation("Discord: DiFFoZ#6745 \\ https://discord.gg/6KymqGv");
return UniTask.CompletedTask;
}

Expand Down

0 comments on commit 3ace4cf

Please sign in to comment.