Replace print on Logger.info

This commit is contained in:
Ivlev Denis 2015-11-29 00:57:13 +03:00
parent 123c2658b4
commit d9193f34b2
1 changed files with 2 additions and 1 deletions

View File

@ -45,6 +45,7 @@ __all__ = ('start', 'stop')
from kivy.core.image import Image
from kivy.graphics import Color, Rectangle
from kivy.logger import Logger
pointer_image = None
pointer_scale = 1.0
@ -134,7 +135,7 @@ def start(win, ctx):
on_touch_up=_touch_up)
if ctx.config.get('show_cursor', False):
print('adding binding for mouse move')
Logger.info('Base: Adding binding for mouse move')
win.bind(mouse_pos=_mouse_move)