mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
14 lines
238 B
C#
14 lines
238 B
C#
|
using System;
|
||
|
using Bit.App.Abstractions;
|
||
|
|
||
|
namespace Bit.Android.Services
|
||
|
{
|
||
|
public class LogService : ILogService
|
||
|
{
|
||
|
public void WriteLine(string message)
|
||
|
{
|
||
|
Console.WriteLine(message);
|
||
|
}
|
||
|
}
|
||
|
}
|