From e2bc29e2ed78c2ef7779f732d859a7393c6a6bd4 Mon Sep 17 00:00:00 2001 From: Phil Haack Date: Mon, 19 May 2014 10:01:53 -0700 Subject: [PATCH] Chang this warning to DEBUG level output This just adds noise to our log files. Thoughts on making it a DEBUG warning? --- ReactiveUI/POCOObservableForProperty.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactiveUI/POCOObservableForProperty.cs b/ReactiveUI/POCOObservableForProperty.cs index 46532c95c5..b1245a83ba 100644 --- a/ReactiveUI/POCOObservableForProperty.cs +++ b/ReactiveUI/POCOObservableForProperty.cs @@ -22,7 +22,7 @@ public IObservable> GetNotificationForProperty(o { var type = sender.GetType(); if (!hasWarned.ContainsKey(type)) { - this.Log().Warn( + this.Log().Debug( "{0} is a POCO type and won't send change notifications, WhenAny will only return a single value!", type.FullName); hasWarned[type] = true;