manjunatha.mahalinga...@gmail.com writes:
> ...
> I created the my own class MyLogger and passing log file name to it. I'm
> seeing no log is being written to passed log file instead everything is
> written to the logfilename [actually logfilename is variable with file name]
> I'm trying to cre
On Friday, October 16, 2015 at 11:11:58 PM UTC-7, dieter wrote:
> manjunatha.mahalinga...@gmail.com writes:
> > I'm very much new to python.
> > I'm doing the automation for networking device testing , I will be opening
> > the 4 telnet session, and doing some testing operations on each of those
On Friday, October 16, 2015 at 11:11:58 PM UTC-7, dieter wrote:
> manjunatha.mahalinga...@gmail.com writes:
> > I'm very much new to python.
> > I'm doing the automation for networking device testing , I will be opening
> > the 4 telnet session, and doing some testing operations on each of those
On Friday, October 16, 2015 at 11:06:24 PM UTC-7, Chris Angelico wrote:
> On Sat, Oct 17, 2015 at 4:47 PM, wrote:
> > class Logger():
> > def __init__(self,log):
> > self.terminal = sys.stdout
> > self.log = log
> >
> > def write(self, message):
> > self.terminal.w
manjunatha.mahalinga...@gmail.com writes:
> I'm very much new to python.
> I'm doing the automation for networking device testing , I will be opening
> the 4 telnet session, and doing some testing operations on each of those
> telnet sessions and capture or log the respective output in 4 differ
On Sat, Oct 17, 2015 at 4:47 PM, wrote:
> class Logger():
> def __init__(self,log):
> self.terminal = sys.stdout
> self.log = log
>
> def write(self, message):
> self.terminal.write(message)
> self.log.write(message)
>
>
> for (dname, ip, port) in tuple
Hello All,
I'm very much new to python.
I'm doing the automation for networking device testing , I will be opening the
4 telnet session, and doing some testing operations on each of those telnet
sessions and capture or log the respective output in 4 different log files. As
of now all the 4 lo