Skip to content

Commit 44c6c7f

Browse files
committed
remove logging
1 parent 95f0620 commit 44c6c7f

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

pygame_matplotlib/backend_pygame.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
from __future__ import annotations
1212

13+
import logging
1314
from typing import List
1415
from matplotlib.artist import Artist
1516
from matplotlib.transforms import IdentityTransform
@@ -29,15 +30,8 @@
2930
from matplotlib.path import Path
3031
from matplotlib.transforms import Bbox
3132

32-
import logging
3333

3434
logger = logging.getLogger(__name__)
35-
console = logging.StreamHandler()
36-
logger.addHandler(console)
37-
38-
logger.setLevel(logging.WARNING)
39-
40-
logger.warning(f"{__name__} is still in developpement. Please see our github page.")
4135

4236

4337
class FigureSurface(pygame.Surface, Figure):

0 commit comments

Comments
 (0)