mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
22 lines
476 B
Python
22 lines
476 B
Python
#
|
|
#
|
|
#
|
|
|
|
from __future__ import (
|
|
absolute_import,
|
|
division,
|
|
print_function,
|
|
unicode_literals,
|
|
)
|
|
|
|
from logging import getLogger
|
|
|
|
logger = getLogger('Akamai')
|
|
logger.warning(
|
|
'AkamaiProvider has been moved into a separate module, '
|
|
'octodns_edgedns is now required. Provider class should '
|
|
'be updated to octodns_edgedns.AkamaiProvider. See '
|
|
'https://github.com/octodns/octodns#updating-'
|
|
'to-use-extracted-providers for more information.'
|
|
)
|