Skip to content

Commit 43d2f79

Browse files
committed
iluwatar#2898 Reduced sout lines
1 parent 08eded1 commit 43d2f79

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

publish-subscribe/src/main/java/com/iluwatar/publishsubscribe/Borrower.java

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package com.iluwatar.publishsubscribe;
22

33
import lombok.extern.slf4j.Slf4j;
4+
import org.slf4j.event.Level;
45
import javax.jms.BytesMessage;
56
import javax.jms.JMSException;
67
import javax.jms.Message;
@@ -50,7 +51,7 @@ public Borrower(String topicCFName, String topicName, double initialRate) {
5051
subscriber.setMessageListener(this);
5152

5253
tConnection.start();
53-
System.out.println("Initial rate is " + currentRate + " \nWaiting for new rates...");
54+
LOGGER.info("Initial rate is " + currentRate + " \nWaiting for new rates...");
5455
} catch(NamingException e) {
5556
LOGGER.error(ERROR, e);
5657
} catch(JMSException e) {
@@ -72,7 +73,7 @@ public void onMessage(Message message) {
7273
} catch(JMSException e) {
7374
LOGGER.error(ERROR, e);
7475
}
75-
System.out.println("Waiting for new rates...");
76+
LOGGER.info("Waiting for new rates...");
7677
}
7778

7879
public boolean close() {
@@ -95,9 +96,9 @@ public static void main(String[] args) {
9596
topicName = args[1];
9697
rate = Integer.parseInt(args[2]);
9798
} else {
98-
System.out.println("Invalid arguments. Should be: ");
99-
System.out.println("java TBorrower [factory] [topic] [rate]");
100-
System.exit(0);
99+
LOGGER.info("Invalid arguments. Should be: ");
100+
LOGGER.info("java TBorrower [factory] [topic] [rate]");
101+
System.exit(1);
101102
}
102103

103104
Borrower borrower = new Borrower(topicCF, topicName, rate);
@@ -106,8 +107,8 @@ public static void main(String[] args) {
106107
// Run until enter is pressed
107108
BufferedReader reader = new BufferedReader
108109
(new InputStreamReader(System.in));
109-
System.out.println ("TBorrower application started");
110-
System.out.println ("Press enter to quit application");
110+
LOGGER.info("TBorrower application started");
111+
LOGGER.info("Press enter to quit application");
111112
reader.readLine();
112113
borrower.close();
113114
System.exit(0);

publish-subscribe/src/main/java/com/iluwatar/publishsubscribe/Lender.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public static void main(String[] args) {
129129
String line = reader.readLine();
130130
//Exit if user pressed enter or line is blank
131131
if (line == null || line.trim().length() == 0) {
132-
System.out.println("Exiting...");
132+
LOGGER.info("Exiting...");
133133
lender.close();
134134
System.exit(0);
135135
}

0 commit comments

Comments
 (0)