Commit c956984a753edc0d0d479d8339f63e712c1cc205

Authored by Adhidarma Hadiwinoto
1 parent 6df0e4bb86
Exists in master

verbose on get sn

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

... ... @@ -68,6 +68,8 @@ function createXmlPayload(params) {
68 68 function getSNFromMessage(message) {
69 69 try {
70 70 var sn_match = message.match(/SN: (\w+)/);
  71 +
  72 + logger.verbose('Got SN: ' + sn_match[1]);
71 73 return sn_match[1];
72 74 }
73 75 catch(err) {