This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 104717 - do not print your outputs to STDOUT
Summary: do not print your outputs to STDOUT
Status: VERIFIED FIXED
Alias: None
Product: web
Classification: Unclassified
Component: YAML (show other bugs)
Version: 6.x
Hardware: PC Linux
: P2 blocker (vote)
Assignee: issues@obsolete
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-05-24 12:07 UTC by Tomas Danek
Modified: 2008-08-29 09:26 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Tomas Danek 2007-05-24 12:07:17 UTC
my std out is messed with a lot of debugging output like:

Rules:
  Rule Indent = Indent$1 (12)
  Rule Indent$1 =  (4)
  Rule Indent$1 = <indent> (5)
  Rule Item = Indent Item2 (2)
  Rule Item2 = SequenceValue (0)
  Rule Item2 = MapKey MapValue (1)
  Rule MapKey = <key> (11)
  Rule MapValue = <value> (9)
  Rule S = S$1 (6)
  Rule S$1 =  (7)
  Rule S$1 = S$2 S$1 (8)
  Rule S$2 = Item (10)
  Rule SequenceValue = <sequence> (3)

First:
    Item2 : [0, 1]
      <key> [1]
      <sequence> [0]
    Item : [2]
    SequenceValue : [3]
    Indent$1 : [4, 5] #[4]
      <indent> [5]
    S : [6]
    S$1 : [7, 8] #[7]
      <key> [8]
      <sequence> [8]
      <indent> [8]
    MapValue : [9]
    S$2 : [10]
    MapKey : [11]
    Indent : [12]


...

use proper logging instead.
Comment 1 Jan Jancura 2007-06-13 15:13:16 UTC
fixed in trunk:
IDE:-------------------------------------------------
IDE: [6/13/07 4:12 PM] Committing "YAML.nbs" started
Checking in YAML.nbs;
/cvs/languages/yaml/src/org/netbeans/modules/languages/yaml/YAML.nbs,v  <--  YAML.nbs
new revision: 1.3; previous revision: 1.2
done
IDE: [6/13/07 4:12 PM] Committing "YAML.nbs" finished
Comment 2 Jan Jancura 2007-06-13 15:13:36 UTC
f
Comment 3 Tomas Danek 2007-10-23 15:27:08 UTC
thanks. verified.