#! /usr/bin/python3
import logging
import sys

try:
    from arcnagios.se.check_gridstorage import Check_gridstorage
except ImportError as xc:
    sys.stdout.write('UNKNOWN: Error loading modules: %s\n\nsys.path = %r\n'
                     %(xc, sys.path))
    sys.exit(3)

logging.basicConfig()
probe = Check_gridstorage()
probe.nagios_run()
