Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Releases: ddc/pythonLogs

Release v6.0.0

26 Jan 20:36
@github-actions github-actions
ec66a12
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

⚠️ Breaking Changes v6.0.0

The API has been simplified. You now import classes directly instead of using factory functions:

Before (v5.x):

from pythonLogs import get_basic_log, get_size_rotating_log, get_timed_rotating_log
logger = get_timed_rotating_log(name="myapp", directory="/logs")

After (v6.0.0):

from pythonLogs import BasicLog, SizeRotatingLog, TimedRotatingLog
logger = TimedRotatingLog(name="myapp", directory="/logs")

Migration Guide

┌──────────────────────────┬─────────────────────┐
│ Old Import (v5.x) │ New Import (v6.0.0) │
├──────────────────────────┼─────────────────────┤
│ get_basic_log() │ BasicLog() │
├──────────────────────────┼─────────────────────┤
│ get_size_rotating_log() │ SizeRotatingLog() │
├──────────────────────────┼─────────────────────┤
│ get_timed_rotating_log() │ TimedRotatingLog() │
└──────────────────────────┴─────────────────────┘

New Features

  • Context manager support for automatic cleanup:
with TimedRotatingLog(name="myapp", directory="/logs") as logger:
 logger.info("This logger auto-cleans on exit")
Assets 4
Loading

Release v5.0.3

06 Oct 15:38
@github-actions github-actions
8fa73f7
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

Automated release for version v5.0.3

Loading

Release v5.0.2

02 Oct 18:49
@github-actions github-actions
5acadee
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

Automated release for version v5.0.2

Loading

Release v5.0.1

25 Jul 15:41
@github-actions github-actions
2020a7a
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

Automated release for version v5.0.1

Loading

Release v5.0.0

23 Jul 18:02
@github-actions github-actions
24b7f78
This commit was signed with the committer’s verified signature.
ddc Daniel Costa
GPG key ID: D4AB8C5995AA428E
Verified
Learn about vigilant mode.

Choose a tag to compare

Automated release for version v5.0.0

Loading

Release v4.0.6

21 Jul 16:57
@github-actions github-actions
811f412
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

Automated release for version v4.0.6

Loading

Release v4.0.5

20 Jul 16:17
@github-actions github-actions
e85a683
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

Automated release for version v4.0.5

Loading

Release v4.0.4

20 Jul 16:01
@github-actions github-actions
d4e5b1a
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

Automated release for version v4.0.4

Loading

Release v4.0.3

20 Jul 15:18
@github-actions github-actions
bf71d77
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

Automated release for version v4.0.3

Loading

Release v4.0.2

20 Jul 14:18
@github-actions github-actions
0a0b9b3
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

Automated release for version v4.0.2

Loading
Previous 1
Previous

AltStyle によって変換されたページ (->オリジナル) /