mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-08 22:33:26 +01:00
Commands: altjit enable [app/pid] --udid [udid] * Enables JIT for given app/process altjit mount --udid [udid] * Mounts personalized developer disk
17 lines
329 B
Swift
17 lines
329 B
Swift
//
|
|
// Logger+AltJIT.swift
|
|
// AltJIT
|
|
//
|
|
// Created by Riley Testut on 8/29/23.
|
|
// Copyright © 2023 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
import OSLog
|
|
|
|
public extension Logger
|
|
{
|
|
static let altjitSubsystem = Bundle.main.bundleIdentifier!
|
|
|
|
static let main = Logger(subsystem: altjitSubsystem, category: "AltJIT")
|
|
}
|