Toned down logging amt
This commit is contained in:
parent
173bb8ab7b
commit
138ec72d1a
|
|
@ -15,8 +15,8 @@ async def reboot_callback(event: slack_util.Event, match: Match) -> None:
|
||||||
|
|
||||||
|
|
||||||
async def post_log_callback(event: slack_util.Event, match: Match) -> None:
|
async def post_log_callback(event: slack_util.Event, match: Match) -> None:
|
||||||
# Get the last 500 lines of log of the specified severity or higher
|
# Get the last n lines of log of the specified severity or higher
|
||||||
count = 500
|
count = 100
|
||||||
lines = []
|
lines = []
|
||||||
|
|
||||||
# numerically rank the debug severity
|
# numerically rank the debug severity
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue