Created
September 19, 2024 20:52
-
-
Save RodolfoGS/e179fe4d049753d648f651e090964c49 to your computer and use it in GitHub Desktop.
Simulate "No space left on device" exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/expo-modules-core/ios/Core/Logging/PersistentFileLog.swift b/node_modules/expo-modules-core/ios/Core/Logging/PersistentFileLog.swift | |
index d0ceffb..a939e7d 100644 | |
--- a/node_modules/expo-modules-core/ios/Core/Logging/PersistentFileLog.swift | |
+++ b/node_modules/expo-modules-core/ios/Core/Logging/PersistentFileLog.swift | |
@@ -110,10 +110,12 @@ public class PersistentFileLog { | |
} | |
} | |
- private func appendTextToFile(text: String) { | |
+ private func appendTextToFile(text: String) throws { | |
if let data = text.data(using: .utf8) { | |
if let fileHandle = FileHandle(forWritingAtPath: filePath) { | |
fileHandle.seekToEndOfFile() | |
+ // add an exception here to simulate "No space left on device" exception | |
+ throw Exception(name: "NSFileHandleOperationException", description: "No space left on device") | |
fileHandle.write(data) | |
fileHandle.closeFile() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment