From b9803a05ae71242118890ba3cf17efab179bb201 Mon Sep 17 00:00:00 2001 From: anthony Date: Wed, 13 Jul 2011 18:35:56 -0700 Subject: [PATCH] bug 10705: don't need to print trace status 10705: resolved fixed --- .../src/com/cloud/storage/snapshot/SnapshotSchedulerImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/com/cloud/storage/snapshot/SnapshotSchedulerImpl.java b/server/src/com/cloud/storage/snapshot/SnapshotSchedulerImpl.java index 6d5bc42844c..53cc3b2ed89 100644 --- a/server/src/com/cloud/storage/snapshot/SnapshotSchedulerImpl.java +++ b/server/src/com/cloud/storage/snapshot/SnapshotSchedulerImpl.java @@ -266,7 +266,7 @@ public class SnapshotSchedulerImpl implements SnapshotScheduler { tmpSnapshotScheduleVO.setAsyncJobId(jobId); _snapshotScheduleDao.update(snapshotScheId, tmpSnapshotScheduleVO); } catch (Exception e) { - s_logger.debug("Scheduling snapshot failed due to " + e.toString(), e); + s_logger.warn("Scheduling snapshot failed due to " + e.toString()); } finally { if ( tmpSnapshotScheduleVO != null) { _snapshotScheduleDao.releaseFromLockTable(snapshotScheId);