Alexandros Kosiaris has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/402343 )

Change subject: ircecho: Normalize print statements
......................................................................


ircecho: Normalize print statements

Remove the spurios 3 star loglines that are inconsinstent with the rest
of the print statement across the program

Bug: T184103
Change-Id: I36013ca3120b179280efcc05c27dbde9433dc901
---
M modules/ircecho/files/ircecho.py
1 file changed, 2 insertions(+), 2 deletions(-)

Approvals:
  Alexandros Kosiaris: Looks good to me, approved
  jenkins-bot: Verified
  Volans: Looks good to me, but someone else must approve



diff --git a/modules/ircecho/files/ircecho.py b/modules/ircecho/files/ircecho.py
index c7c94ea..eb51012 100755
--- a/modules/ircecho/files/ircecho.py
+++ b/modules/ircecho/files/ircecho.py
@@ -129,7 +129,7 @@
 
 class EchoBot(SingleServerIRCBot):
     def __init__(self, chans, nickname, server):
-        print('*** Connecting to IRC server %s...' % server)
+        print('Connecting to IRC server %s...' % server)
         SingleServerIRCBot.__init__(self, [(server, 6667)], nickname, 'IRC 
echo bot')
         self.chans = chans
 
@@ -137,7 +137,7 @@
         c.nick(c.get_nickname() + '_')
 
     def on_welcome(self, c, e):
-        print('*** Connected')
+        print('Connected')
         for chan in [self.chans]:
             c.join(chan)
 

-- 
To view, visit https://gerrit.wikimedia.org/r/402343
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I36013ca3120b179280efcc05c27dbde9433dc901
Gerrit-PatchSet: 3
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Alexandros Kosiaris <[email protected]>
Gerrit-Reviewer: Alexandros Kosiaris <[email protected]>
Gerrit-Reviewer: Volans <[email protected]>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to