You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can use Reporter classes to monitor your program and send crash reports to the developer. It can help you fix the
288
-
bugs and improve your program before your users get upset about it. See some examples in
289
-
the [log21/CrashReporter/Reporters.py](https://github.com/MPCodeWriter21/log21/blob/master/log21/CrashReporter/Reporters.py)
366
+
You can use Reporter classes to monitor your program and send crash reports to the
367
+
developer. It can help you fix the bugs and improve your program before your users get
368
+
upset about it. See some examples in the [log21/crash\_reporter/reporters.py](https://github.com/MPCodeWriter21/log21/blob/master/log21/CrashReporter/Reporters.py)
290
369
file.
291
370
292
371
### 2.1.8
@@ -325,7 +404,8 @@ Added LoggingWindow!
325
404
326
405
Added `ProgressBar` class!
327
406
328
-
You can directly print a progress bar to the console using `print_progress` method of `log21.Logger` class.
407
+
You can directly print a progress bar to the console using `print_progress` method of
408
+
`log21.Logger` class.
329
409
330
410
OR
331
411
@@ -341,7 +421,8 @@ Minor changes.
341
421
342
422
### 1.5.8
343
423
344
-
Added `log21.log`, `log21.debug`, `log21.info`, `log21.warning`, `log21.error` and some other functions.
424
+
Added `log21.log`, `log21.debug`, `log21.info`, `log21.warning`, `log21.error` and some
425
+
other functions.
345
426
346
427
### 1.5.7
347
428
@@ -354,7 +435,8 @@ Added `log21.pprint()` function. It is similar to `pprint.pprint()` function.
354
435
### 1.5.5
355
436
356
437
Added `level_names` argument to Formatter classes.
357
-
`level_names` can be used to change the name of logging level that appears while logging messages.
438
+
`level_names` can be used to change the name of logging level that appears while logging
439
+
messages.
358
440
359
441
### 1.5.3-4
360
442
@@ -374,11 +456,13 @@ More description added.
374
456
375
457
### 1.4.12
376
458
377
-
Setting custom formatting style and custom date-time formatting added to `log21.get_logger` function.
459
+
Setting custom formatting style and custom date-time formatting added to
460
+
`log21.get_logger` function.
378
461
379
462
### 1.4.11
380
463
381
-
`Logger.write` edited. It's same as `Logger.warning` but its default `end` argument value is an empty string.
464
+
`Logger.write` edited. It's same as `Logger.warning` but its default `end` argument
465
+
value is an empty string.
382
466
383
467
### 1.4.10
384
468
@@ -388,7 +472,7 @@ Setting custom formatting style and custom date-time formatting added to `log21.
388
472
389
473
Bug fixed:
390
474
391
-
```
475
+
```python
392
476
>>> log21.get_logger()
393
477
Traceback (most recent call last):
394
478
File "<stdin>", line 1, in<module>
@@ -405,7 +489,8 @@ TypeError: A logger name must be a string
405
489
406
490
`Logger.print` added.
407
491
408
-
You can use `Logger.print` to print a message using the current level of the logger class.
492
+
You can use `Logger.print` to print a message using the current level of the logger
0 commit comments