MobioLogging
Project description
m-formatter-logging là thư viện python để write log cho các module BackEnd-Mobio
Version:
Phiên bản hiện tại 1.0.6
Cài đặt:
pip3 install m-formatter-logging
Sử dụng:
- Gọi func log tương ứng với level mong muốn.
- Sử dụng tham số
sensitive=True
(default=False) trong trường hợp dữ liệu log có data nhạy cảm (Ví dụ: thông tin PII của profile, mật khẩu của user, mã voucher,...). - Sử dụng key extra để log thêm thông tin (chỉ show trên hệ thống ELK).
if __name__ == '__main__':
def test():
MobioLogging().info('app_test_lib_logging::test():info', sensitive=True, extra={"key1": "value1"})
try:
a = 1 / 0
MobioLogging().info('__init__::test():a: %s' % a)
except Exception as ex1:
MobioLogging().error('app_test_lib_logging::test():error: %s' % ex1, sensitive=True)
MobioLogging().debug('app_test_lib_logging::test():debug')
MobioLogging().warning('app_test_lib_logging::test():warning', sensitive=False)
test()
- Sử dụng file custom config:
config_file_path = 'path/to/config/file'
MobioLogging().file_config(self, config_file_path)
- Sử dụng custom filter để xử lý cụ thể 1 trường hợp log:
class CustomizeFilterRecords():
def filter(self, record):
if record.key1 == 'value1':
return False # no log
return True
MobioLogging().logger.addFilter(CustomizeFilterRecords())
Changelog:
v1.0.6:
- Bỏ fix version dependency configparser
v1.0.4:
- Cập nhật lại mô tả trong README.
v1.0.3:
- Phiên bản đầu tiên.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file m-formatter-logging-1.0.6.tar.gz
.
File metadata
- Download URL: m-formatter-logging-1.0.6.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a448aabfb62e178f6309b496fc37c72ce5dfcba0266acc05e2da83d90064c6e9 |
|
MD5 | bc0e6aad126d5d87a6cf49e2743a5a4d |
|
BLAKE2b-256 | 812776df8db43dc3c68a800c73dfb5a2263f34b1c78aaedbbd5e62b190391641 |