Replaced two G_LOG_LEVEL_ERROR by G_LOG_LEVEL_CRITICAL

This commit is contained in:
Valery Febvre 2004-08-02 23:49:46 +00:00
parent 601e8b7c13
commit 2586368612
1 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ lasso_session_add_assertion(LassoSession *session,
}
}
if(found == TRUE) {
message(G_LOG_LEVEL_ERROR, "A provider id already exists\n");
message(G_LOG_LEVEL_CRITICAL, "A provider id already exists\n");
return(-4);
}
@ -221,7 +221,7 @@ lasso_session_get_authentication_method(LassoSession *session,
as = lasso_node_get_child(assertion, "AuthenticationStatement", NULL, NULL);
authentication_method = lasso_node_get_attr_value(as, "AuthenticationMethod", &err);
if (authentication_method == NULL) {
message(G_LOG_LEVEL_ERROR, err->message);
message(G_LOG_LEVEL_CRITICAL, err->message);
g_error_free(err);
goto done;
}