mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
fixed build error
This commit is contained in:
@@ -24,7 +24,7 @@ namespace NzbDrone.Common
|
||||
return merged;
|
||||
}
|
||||
|
||||
public static void Add<TKey, TValue>(this ICollection<KeyValuePair<TKey, TValue>> collection, TKey key, TValue value)
|
||||
public static void Add<TKey, TValue>(this ICollection<KeyValuePair<TKey, TValue>> collection, TKey key, TValue value)
|
||||
{
|
||||
collection.Add(key, value);
|
||||
}
|
||||
|
@@ -44,6 +44,11 @@ namespace NzbDrone.Core.Datastore.Migration.Framework
|
||||
_logger.Error(message);
|
||||
}
|
||||
|
||||
public void Error(Exception exception)
|
||||
{
|
||||
_logger.ErrorException(exception.Message, exception);
|
||||
}
|
||||
|
||||
public void Write(string message, bool escaped)
|
||||
{
|
||||
_logger.Info(message);
|
||||
|
Reference in New Issue
Block a user