mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
AltServer embeds the AltJIT CLI tool in its app bundle and runs it as an admin subprocess.
17 lines
335 B
Swift
17 lines
335 B
Swift
//
|
|
// Logger+AltServer.swift
|
|
// AltStore
|
|
//
|
|
// Created by Riley Testut on 9/6/23.
|
|
// Copyright © 2023 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
import OSLog
|
|
|
|
extension Logger
|
|
{
|
|
static let altserverSubsystem = Bundle.main.bundleIdentifier!
|
|
|
|
static let main = Logger(subsystem: altserverSubsystem, category: "AltServer")
|
|
}
|