Re: [MonoTouch] MonoTouch and iOS 5.1

2012-03-13 Thread Nic Wise
Nope, but I think it only works in Debug mode now. I use testflight, personally: public static void Log(string message, params object[] param) { var str = string.Format (message, param); Console.WriteLine (str);

Re: [MonoTouch] MonoTouch and iOS 5.1

2012-03-13 Thread MilkyJoe
Darn it. My entire logging class is written around the console! Do we know why Apple has made this change? Being able to log to the console has really helped me to get to the bottom of some release problems. -- View this message in context:

Re: [MonoTouch] MonoTouch and iOS 5.1

2012-03-13 Thread MilkyJoe
What are the options/alternatives for this? -- View this message in context: http://monotouch.2284126.n4.nabble.com/MonoTouch-and-iOS-5-1-tp4466329p4469744.html Sent from the MonoTouch mailing list archive at Nabble.com. ___ MonoTouch mailing list

Re: [MonoTouch] MonoTouch and iOS 5.1

2012-03-13 Thread Sebastien Pouliot
On Tue, Mar 13, 2012 at 1:12 PM, MilkyJoe leigh.bow...@curvenet.co.uk wrote: Darn it. My entire logging class is written around the console! Do we know why Apple has made this change? No we don't (at least not yet). Being able to log to the console has really helped me to get to the bottom

Re: [MonoTouch] MonoTouch and iOS 5.1

2012-03-13 Thread MilkyJoe
Thanks Sebastien! -- View this message in context: http://monotouch.2284126.n4.nabble.com/MonoTouch-and-iOS-5-1-tp4466329p4470222.html Sent from the MonoTouch mailing list archive at Nabble.com. ___ MonoTouch mailing list MonoTouch@lists.ximian.com

[MonoTouch] MonoTouch and iOS 5.1

2012-03-12 Thread Miguel de Icaza
Hey guys, We posted an update about some apps that could break on iOS 5.1: http://blog.xamarin.com/2012/03/11/monotouch-and-ios-5-1/ Miguel ___ MonoTouch mailing list MonoTouch@lists.ximian.com

Re: [MonoTouch] MonoTouch and iOS 5.1

2012-03-12 Thread Rodrigo 'r2d2rigo' Diaz
Does this problem affect System.Diagnostics.Debug.WriteLine too? 2012/3/12 Miguel de Icaza mig...@xamarin.com Hey guys, We posted an update about some apps that could break on iOS 5.1: http://blog.xamarin.com/2012/03/11/monotouch-and-ios-5-1/ Miguel

Re: [MonoTouch] MonoTouch and iOS 5.1

2012-03-12 Thread Miguel de Icaza
Hello, On Mar 12, 2012, at 11:34 AM, Rodrigo 'r2d2rigo' Diaz wrote: Does this problem affect System.Diagnostics.Debug.WriteLine too? It does not. The reason is because we have the attribute [Conditional (DEBUG)] Which means that those calls to Console.WriteLine only happen for debug

Re: [MonoTouch] MonoTouch and iOS 5.1

2012-03-12 Thread ric3kg
Does this mean the Console is dead? Cause nothing is showing up after compiling with the latest stable release of MonoTouch. Is there anything that can be done? Thanks, Rick -- View this message in context: http://monotouch.2284126.n4.nabble.com/MonoTouch-and-iOS-5-1-tp4466329p4467663.html