Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
loggingontips is a library which makes logging flexible and easy to use without bothering about log management.
loggingontips
is a Python package that simplifies logging setup and configuration. It eliminates the need for manual handling by allowing users to configure various logging parameters effortlessly, such as log file names and file rotations based on timestamps, file size, or the number of logs.
Install the package using pip:
pip install loggingontips
from loggingontips.Logger import Logger
from loggingontips.LogLevels import LogLevel
logger=Logger()
def run():
logger.log(LogLevel.INFO,'Is it working?')
if __name__=="__main__":
run()
from loggingontips.Logger import Logger
from loggingontips.LogLevels import LogLevel
l1=Logger()
#In this case log file should be rotated as size limit is 4 MB and logs are of 16 MB+
def run():
for i in range(10000000):
l1.log(LogLevel.DEBUG,'Working?')
if __name__=="__main__":
run()
import threading
import os
from loggingontips.LogLevels import LogLevel
from loggingontips.Logger import Logger
def test_thread_safe_log():
log_file = "test_thread_safe_log.log"
if os.path.exists(log_file):
os.remove(log_file)
logger = Logger(log_file=log_file)
def worker(thread_id):
for i in range(100):
logger.thread_safe_log(LogLevel.INFO, f"Thread-{thread_id} log message {i}")
threads = []
for thread_id in range(15):
thread = threading.Thread(target=worker, args=(thread_id,))
threads.append(thread)
thread.start()
for thread in threads:
thread.join()
logger.close()
if __name__ == "__main__":
test_thread_safe_log()
FAQs
loggingontips is a library which makes logging flexible and easy to use without bothering about log management.
We found that loggingontips demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.