bitwarden-android/src/Android/Services/LogService.cs

14 lines
238 B
C#
Raw Normal View History

2016-12-23 08:39:00 +03:00
using System;
using Bit.App.Abstractions;
namespace Bit.Android.Services
{
public class LogService : ILogService
{
public void WriteLine(string message)
{
Console.WriteLine(message);
}
}
}