close Warning: Can't synchronize with repository "(default)" (/var/svn/tolp does not appear to be a Subversion repository.). Look in the Trac log for more information.

Opened 18 years ago

Closed 18 years ago

#462 closed defect (fixed)

Problems with Show

Reported by: Alfredo Torre Owned by: Víctor de Buen Remiro
Priority: highest Milestone:
Component: Math Version: head
Severity: blocker Keywords:
Cc: imendez

Description

Please, try to run this codes:

CODE 1: NO PROBLEMS
Real OldShow.a = Show(1, "ALL");
Real OldShow.s = Show(1, "STANDARD");
Real OldShow.t = Show(1, "TRACE");
Real OldShow.e = Show(1, "ERROR");

WriteLn(" TRACE ");
WriteLn("<E> ERROR </E>");
WriteLn("<W> WARNING </W>");

CODE 2: NO STANDARD -> NO PROBLEMS
Real OldShow.a = Show(1, "ALL");
Real OldShow.s = Show(0, "STANDARD");
Real OldShow.t = Show(1, "TRACE");
Real OldShow.e = Show(1, "ERROR");

WriteLn(" TRACE ");
WriteLn("<E> ERROR </E>");
WriteLn("<W> WARNING </W>");

CODE 3: NO ALL -> STANDARD MESSAGES ARE SHOWN
Real OldShow.a = Show(0, "ALL");
Real OldShow.s = Show(1, "STANDARD");
Real OldShow.t = Show(1, "TRACE");
Real OldShow.e = Show(1, "ERROR");

WriteLn(" TRACE ");
WriteLn("<E> ERROR </E>");
WriteLn("<W> WARNING </W>");

CODE 4: YES ALL, NO ERROR -> ERROR MESSAGES ARE SHOWN
Real OldShow.a = Show(1, "ALL");
Real OldShow.s = Show(1, "STANDARD");
Real OldShow.t = Show(1, "TRACE");
Real OldShow.e = Show(0, "ERROR");

WriteLn(" TRACE ");
WriteLn("<E> ERROR </E>");
WriteLn("<W> WARNING </W>");

By the way, ¿could it be possible to add the option WARNING for this type of messages?

Change History (3)

comment:1 Changed 18 years ago by Jorge

Owner: changed from danirus to Liván Ramírez Dorta

comment:2 Changed 18 years ago by Víctor de Buen Remiro

Owner: changed from Liván Ramírez Dorta to Víctor de Buen Remiro

Sorry by delay and tahanks to report it

comment:3 Changed 18 years ago by Víctor de Buen Remiro

Resolution: fixed
Status: newclosed

Problem has been fixed in CVS a few weeks ago but I forgot to update this bug
report.

Note: See TracTickets for help on using tickets.