Spaces:
Sleeping
Sleeping
File size: 498 Bytes
f8bf7d4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import logging
logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)
import time
import streamlit as st
def run(*args, **kwargs):
# unpack the duration from the kwargs
duration = kwargs.get('duration', 0.2)
logger.info("π Running task ")
time.sleep(.2)
logger.info("π₯΅ Still running task")
time.sleep(0.1)
logger.warning("β οΈ Task is taking longer than expected")
#time.sleep(0.2)
time.sleep(duration)
logger.info("β
Finished task") |