mirror of
https://github.com/bitwarden/android.git
synced 2025-01-25 09:13:54 +03:00
14 lines
242 B
C#
14 lines
242 B
C#
|
using System;
|
|||
|
using Bit.App.Abstractions;
|
|||
|
|
|||
|
namespace Bit.iOS.Core.Services
|
|||
|
{
|
|||
|
public class LogService : ILogService
|
|||
|
{
|
|||
|
public void WriteLine(string message)
|
|||
|
{
|
|||
|
Console.WriteLine(message);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|