9 lines
252 B
Python
9 lines
252 B
Python
# Copyright (C) 2018-2025 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import logging
|
|
import sys
|
|
|
|
logging.basicConfig(format="[ %(levelname)s ] %(message)s", level=logging.INFO, stream=sys.stdout)
|
|
logger = logging.getLogger('BenchmarkApp')
|