1
1
package com .iluwatar .publishsubscribe ;
2
2
3
3
import lombok .extern .slf4j .Slf4j ;
4
+ import org .slf4j .event .Level ;
4
5
import javax .jms .BytesMessage ;
5
6
import javax .jms .JMSException ;
6
7
import javax .jms .Message ;
@@ -50,7 +51,7 @@ public Borrower(String topicCFName, String topicName, double initialRate) {
50
51
subscriber .setMessageListener (this );
51
52
52
53
tConnection .start ();
53
- System . out . println ("Initial rate is " + currentRate + " \n Waiting for new rates..." );
54
+ LOGGER . info ("Initial rate is " + currentRate + " \n Waiting for new rates..." );
54
55
} catch (NamingException e ) {
55
56
LOGGER .error (ERROR , e );
56
57
} catch (JMSException e ) {
@@ -72,7 +73,7 @@ public void onMessage(Message message) {
72
73
} catch (JMSException e ) {
73
74
LOGGER .error (ERROR , e );
74
75
}
75
- System . out . println ("Waiting for new rates..." );
76
+ LOGGER . info ("Waiting for new rates..." );
76
77
}
77
78
78
79
public boolean close () {
@@ -95,9 +96,9 @@ public static void main(String[] args) {
95
96
topicName = args [1 ];
96
97
rate = Integer .parseInt (args [2 ]);
97
98
} 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 );
101
102
}
102
103
103
104
Borrower borrower = new Borrower (topicCF , topicName , rate );
@@ -106,8 +107,8 @@ public static void main(String[] args) {
106
107
// Run until enter is pressed
107
108
BufferedReader reader = new BufferedReader
108
109
(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" );
111
112
reader .readLine ();
112
113
borrower .close ();
113
114
System .exit (0 );
0 commit comments