lib/logging: fix typo

This commit is contained in:
Jens Langhammer 2020-02-24 14:10:58 +01:00
parent af91e2079b
commit b743736c26
1 changed files with 1 additions and 1 deletions

View File

@ -5,5 +5,5 @@ from os import getpid
# pylint: disable=unused-argument
def add_process_id(logger, method_name, event_dict):
"""Add the current process ID"""
event_dict["pdi"] = getpid()
event_dict["pid"] = getpid()
return event_dict