log: move a log from info to debug level

This basically duplicates an info log further below that says "Generated..."

Change-Id: I32f22f71adc6dc2fbc7bcca5d277337baef3cd6d
This commit is contained in:
Neels Hofmeyr 2016-12-16 16:11:36 +01:00
parent 4307ad94b6
commit 0acd31e9a6
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ int db_get_auc(struct db_context *dbc, const char *imsi,
if (rc <= 0)
return rc;
LOGAUC(imsi, LOGL_INFO, "Calling to generate %u vectors\n", num_vec);
LOGAUC(imsi, LOGL_DEBUG, "Calling to generate %u vectors\n", num_vec);
rc = auc_compute_vectors(vec, num_vec, &aud2g, &aud3g, rand_auts, auts);
if (rc < 0) {
num_vec = 0;