summaryrefslogtreecommitdiff
path: root/examples/simple_logger.py
blob: 082aca99564c996f42a768e23acb31f2257f6bc2 (plain)
1
2
3
4
5
6
7
import uwsgi


def print_logs(ip, port, message):
    print(ip, port, message)

uwsgi.udp_callable = print_logs