mirror of
https://github.com/bitwarden/mobile
synced 2025-12-22 11:13:49 +00:00
Log service. Linker adjustments.
This commit is contained in:
13
src/iOS.Core/Services/LogService.cs
Normal file
13
src/iOS.Core/Services/LogService.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using Bit.App.Abstractions;
|
||||
|
||||
namespace Bit.iOS.Core.Services
|
||||
{
|
||||
public class LogService : ILogService
|
||||
{
|
||||
public void WriteLine(string message)
|
||||
{
|
||||
Console.WriteLine(message);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -106,6 +106,7 @@
|
||||
<Compile Include="Services\DeviceInfoService.cs" />
|
||||
<Compile Include="Services\KeyChainStorageService.cs" />
|
||||
<Compile Include="Services\CommonCryptoKeyDerivationService.cs" />
|
||||
<Compile Include="Services\LogService.cs" />
|
||||
<Compile Include="Services\Settings.cs" />
|
||||
<Compile Include="Services\GoogleAnalyticsService.cs" />
|
||||
<Compile Include="Services\LocalizeService.cs" />
|
||||
|
||||
Reference in New Issue
Block a user