Skip to content

Commit

Permalink
[Xamarin.Android.Build.Tasks] MonoAndroidHelper.InitializeAndroidLogg…
Browse files Browse the repository at this point in the history
…er() is public. (#117)

We need this in the debugging targets which regressed wrt logging progress.
  • Loading branch information
atsushieno authored and jonpryor committed Jul 16, 2016
1 parent 70655d8 commit 9e4158c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public static IEnumerable<ITaskItem> DistinctFilesByContent (IEnumerable<ITaskIt
return filePaths.Distinct (MonoAndroidHelper.SizeAndContentFileComparer.DefaultComparer);
}

internal static void InitializeAndroidLogger (TaskLoggingHelper log)
public static void InitializeAndroidLogger (TaskLoggingHelper log)
{
AndroidLogger.Error += (task, message) => log.LogError (task + " " + message);
AndroidLogger.Warning += (task, message) => log.LogWarning (task + " " + message);
Expand Down

0 comments on commit 9e4158c

Please sign in to comment.