Remove deprecated logger function in skimage/__init__.py

This commit is contained in:
Johannes Schönberger
2014-04-11 10:06:28 -04:00
parent ed558d672e
commit b08a1264c1
-26
View File
@@ -168,30 +168,4 @@ class _FakeLog(object):
pass
@_deprecated()
def get_log(name=None):
"""Return a console logger.
Output may be sent to the logger using the `debug`, `info`, `warning`,
`error` and `critical` methods.
Parameters
----------
name : str
Name of the log.
References
----------
.. [1] Logging facility for Python,
http://docs.python.org/library/logging.html
"""
if name is None:
name = 'skimage'
else:
name = 'skimage.' + name
return _FakeLog(name)
from .util.dtype import *