if args.verbose == MLogger.FULL: # フルデータの場合 log_level_name = "(全打ち版)" elif args.verbose == MLogger.DEBUG_FULL: # フルデータの場合 log_level_name = "(全打ちデバッグ版)" elif args.verbose == MLogger.DEBUG: # テスト(デバッグ版)の場合 log_level_name = "(デバッグ版)" elif args.verbose == MLogger.TIMER: # 時間計測の場合 log_level_name = "(タイマー版)" elif not is_saving: # 省エネOFFの場合 log_level_name = "(ハイスペック版)" elif is_out_log: # ログありの場合 log_level_name = "(ログあり版)" now_version_name = "{0}{1}".format(VERSION_NAME, log_level_name) # 引数指定がない場合、通常起動 app = wx.App(False) icon = wx.Icon(MFileUtils.resource_path('src/MotionSupporter.ico'), wx.BITMAP_TYPE_ICO) frame = MainFrame(None, mydir_path, now_version_name, args.verbose, is_saving, is_out_log) frame.SetIcon(icon) frame.Show(True) app.MainLoop()
if args.verbose == MLogger.FULL: # フルデータの場合 log_level_name = "(全打ち版)" elif args.verbose == MLogger.DEBUG_FULL: # フルデータの場合 log_level_name = "(全打ちデバッグ版)" elif args.verbose == MLogger.DEBUG: # テスト(デバッグ版)の場合 log_level_name = "(デバッグ版)" elif args.verbose == MLogger.TIMER: # 時間計測の場合 log_level_name = "(タイマー版)" elif not is_saving: # 省エネOFFの場合 log_level_name = "(ハイスペック版)" elif is_out_log: # ログありの場合 log_level_name = "(ログあり版)" now_version_name = "{0}{1}".format(VERSION_NAME, log_level_name) # 引数指定がない場合、通常起動 app = wx.App(False) icon = wx.Icon(MFileUtils.resource_path('src/vmdsizing.ico'), wx.BITMAP_TYPE_ICO) frame = MainFrame(None, mydir_path, now_version_name, args.verbose, is_saving, is_out_log) frame.SetIcon(icon) frame.Show(True) app.MainLoop()