lib/logster/base_store.rb in logster-0.8.4.3.pre vs lib/logster/base_store.rb in logster-0.8.4.4.pre

- old
+ new

@@ -48,9 +48,13 @@ # Mark a message as protected; i.e. it is not deleted by the #clear method def protect(message_key) not_implemented end + def delete(message_key) + not_implemented + end + # Clear the protected mark for a message. def unprotect(message_key) not_implemented end