static void editSnippetVerbose(S id, S text) { print("Trying to edit snippet " + id + " with standard credentials (" + standardCredentialsUser() + "), new chars= " + l(text)); editSnippet(id, text); print("Edit successful!"); } static void editSnippetVerbose(S id, S text, S user, S pass) { print("Trying to edit snippet " + id + " as user " + user + (nempty(pass) ? " (+pw)" : " (no pw)"; editSnippet(id, text, user, pass); print("Edit successful!"); }