From: Gavin Sinclair Date: 2004-02-20T15:52:33+09:00 Subject: Re: how to raise warning? > Hi, > > In message "Re: how to raise warning?" > on 04/02/19, "Robert Klemme" writes: > > |warn "#{__FILE__}:#{__LINE__}: there is an error" > > Do you guys expect "warn" to prepend the place information before the > message? > > matz. I don't. A warning is often a user-level piece of information that does not warrant file and line information. Having a variant of 'warn' that displays that information would be nice IMO. warn "You didn't provide such and such", true Not perfect, but not bad. Gavin