parser.add_argument("-s","--save",action='store',dest="directory",help="Use this directory to save. Will be created or loaded from if already present. Deactivates Agordejo/New-Session-Manager support.")
parser.add_argument("-p","--profiler",action='store_true',help="(Development) Run the python profiler and produce a .cprof file at quit. The name will appear in your STDOUT.")
parser.add_argument("-m","--mute",action='store_true',help="(Development) Use a fake cbox module, effectively deactivating midi and audio.")
parser.add_argument("-V","--verbose",action='store_true',help="(Development) Switch the logger to INFO and print out all kinds of information to get a high-level idea of what the program is doing.")
parser.add_argument("-V","--verbose",action='store_true',help="(Development) Switch the logger to INFO and print out all kinds of information to get a high-level idea of what the program is doing. You can also set the environment variable LSS_DEBUG=1")
args=parser.parse_args()
#Check for an alternative way to enable the logger.
importos
ifargs.verbose:
os.environ["LSS_DEBUG"]="1"#for children programs.