[Csnd] Disabling FTable Messages
Date | 2005-09-07 09:55 |
From | Steven Yi |
Subject | [Csnd] Disabling FTable Messages |
Attachments | None |
Date | 2005-09-07 12:22 |
From | Istvan Varga |
Subject | Re: [Csnd] Disabling FTable Messages |
Steven Yi wrote: > I think this had come up before but I couldn't find it in archives, > but is it possible to disable ftable initialization messages? I am > rendering with "-d -m0" and still get the ftable messages when they > are initialized. Do you mean the "ftable %d:" messages ? As I am cleaning up code in fgens.c, I can change that as well. At what message levels should the message be enabled/disabled ? -- Send bugs reports to this list. To unsubscribe, send email to csound-unsubscribe@lists.bath.ac.uk |
Date | 2005-09-07 20:09 |
From | Steven Yi |
Subject | Re: [Csnd] Disabling FTable Messages |
Attachments | None |
Date | 2005-09-07 20:35 |
From | Istvan Varga |
Subject | Re: [Csnd] Disabling FTable Messages |
Steven Yi wrote: > Yes, I have quite a great deal number of "ftable %d" messages showing > up as I'm using ftgentmp in a project and the instrument I have > produces maybe 5 or 10 tables on every note. My guess is that if -m0 > to kill the ftable messages and otherwise to show them. OK, I will disable the message if message level & 7 is zero. -- Send bugs reports to this list. To unsubscribe, send email to csound-unsubscribe@lists.bath.ac.uk |
Date | 2005-09-07 21:20 |
From | Steven Yi |
Subject | Re: [Csnd] Disabling FTable Messages |
Attachments | None |
Date | 2005-09-11 03:27 |
From | Iain Duncan |
Subject | Re: [Csnd] Disabling FTable Messages |
Will this also disable all the messages that happen for table declarations on start up? That would be very useful for me at least. Thanks Iain Steven Yi wrote: > Thanks! > > On 9/7/05, Istvan Varga |
Date | 2005-09-11 11:13 |
From | Istvan Varga |
Subject | Re: [Csnd] Disabling FTable Messages |
Iain Duncan wrote: > Will this also disable all the messages that happen for table > declarations on start up? That would be very useful for me at least. The following messages are not printed unless the message level is OR'd with any of 1, 2, or 4: csound->Message(csound, Str("ftable %d now deleted\n"), ff.fno); csound->Message(csound, Str("ftable %d:\n"), ff.fno); csound->Message(csound, Str("deferred alloc\n")); csound->Message(csound, Str(" defer length %ld\n"), ff->flen); in addition, this message is only printed if message level & 4 is non-zero: csound->Warning(csound, Str("replacing previous ftable %d"), ff->fno); -- Send bugs reports to this list. To unsubscribe, send email to csound-unsubscribe@lists.bath.ac.uk |