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 251267 - System.err.println() - Out of Order
Summary: System.err.println() - Out of Order
Status: NEW
Alias: None
Product: projects
Classification: Unclassified
Component: Ant (show other bugs)
Version: 8.0.2
Hardware: PC Windows 8
: P3 normal (vote)
Assignee: Tomas Stupka
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-03-18 18:57 UTC by Alshaya
Modified: 2015-06-04 14:00 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
IDE log (201.17 KB, text/plain)
2015-03-18 18:57 UTC, Alshaya
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Alshaya 2015-03-18 18:57:43 UTC
Product Version = NetBeans IDE 8.0.2 (Build 201411181905)
Operating System = Windows 8 version 6.2 running on amd64
Java; VM; Vendor = 1.8.0_20
Runtime = Java HotSpot(TM) 64-Bit Server VM 25.20-b23

There is a problem with `System.err.println()` stream in Netbeans. It is out of order when its used in several lines. 
However, it works fine in other environments without changing the code. So, It seems like there is something wrong within Netbeans environment only.
I hope this frustrating issue to be solved ASAP.

Thank you.
Comment 1 Alshaya 2015-03-18 18:57:46 UTC
Created attachment 152699 [details]
IDE log
Comment 2 Marian Mirilovic 2015-04-02 16:07:19 UTC
You are right ... e.g. :

    public static void main(String[] args) {
        System.err.println("Hello");
        for (int i = 0; i < 100; i++) {
            System.out.println("Log " + i);
        }
        System.err.println("Bye");
    }