Custom Logging
Recording key events and managed errors to boost app reliability and debugging efficiency
Log Messaage
import com.zipy.zipyandroid.Zipy;
// Simple message logging
Zipy.logMessage("User completed onboarding");
// With additional context
Zipy.logMessage("Cart updated", cartObject);
// With custom max length
Zipy.logMessage("Custom message", data, 2000);Log Errors
import com.zipy.zipyandroid.Zipy;
// Simple error logging
Zipy.logError("Payment processing failed");
// With error object
Zipy.logError("API error", errorObject);
// With custom max length
Zipy.logError("Database error", error, 2000);
Log Exceptions
Last updated