Browse Source

Removed redundant log method

pull/1225/head
Casino Boyale GitHub 6 years ago
parent
commit
63d9812e29
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 7 deletions
  1. +0
    -7
      samples/02_commands_framework/Services/CommandHandlingService.cs

+ 0
- 7
samples/02_commands_framework/Services/CommandHandlingService.cs View File

@@ -56,12 +56,5 @@ namespace _02_commands_framework.Services
// the command failed, let's notify the user that something happened.
await context.Channel.SendMessageAsync($"error: {result.ToString()}");
}

private Task LogAsync(LogMessage log)
{
Console.WriteLine(log.ToString());

return Task.CompletedTask;
}
}
}

Loading…
Cancel
Save