-
Notifications
You must be signed in to change notification settings - Fork 3
Closed
Labels
bugSomething isn't workingSomething isn't workinginputProblems with input streamsProblems with input streams
Description
Example to reproduce:
"""
Simple script to generate test logs
"""
import random
import time
import logging
def first():
RANDINT = random.randint(1, 100)
if RANDINT % 3 == 0:
logging.warning('I am a first log! %s\x00', RANDINT)
def second():
RANDINT = random.randint(1, 100)
if RANDINT % 5 == 0:
logging.error('I am a second log! %s\x00', RANDINT)
def third():
RANDINT = random.randint(1, 100)
if RANDINT % 7 == 0:
logging.info('I am a third log! %s\x00', RANDINT)
logging.info('\x00I am the first log in the list! %s\x00', 0)
while True:
first()
second()
third()
RANDINT = random.randint(1, 100)
print(f'I am standard output, {RANDINT}')
time.sleep(0.001)Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinginputProblems with input streamsProblems with input streams