Skip to content

Commit 698fb05

Browse files
author
jan
committed
adding more logging
1 parent c9d79ca commit 698fb05

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

io.sloeber.core/src/io/sloeber/core/common/Common.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public static void setPersistentProperty(IProject project, String tag, int value
149149
* the status information to log
150150
*/
151151
public static void log(IStatus status) {
152-
System.err.println( status.getMessage());
152+
System.out.println( status.getMessage());
153153

154154
if (status.getSeverity() == IStatus.ERROR) {
155155
int style = StatusManager.LOG | StatusManager.SHOW | StatusManager.BLOCK;

io.sloeber.tests/src/io/sloeber/core/RegressionTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,10 @@ public void issue555() {
7070
if (MySystem.getTeensyPlatform().isEmpty()) {
7171
//skip test due to no teensy install folder provided
7272
//do not fail as this will always fail on travis
73-
System.err.println("skipping the test because teensy is not installed.");
73+
System.out.println("skipping the test because teensy is not installed.");
7474
return;
7575
}
76+
System.out.println("Teensy is installed at "+MySystem.getTeensyPlatform());
7677
Map<String, String> unoOptions = new HashMap<>();
7778
BoardDescriptor unoBoardid = PackageManager.getBoardDescriptor("package_index.json", "arduino", "Arduino AVR Boards",
7879
"uno", unoOptions);

0 commit comments

Comments
 (0)