diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-11-08 17:13:12 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-11-08 06:16:04 +0000 |
commit | 2763ede39937f9a0df2c6d0edf8532ce5e6f3e39 (patch) | |
tree | 3a983aa0029a49725b0cdf0d4742e57a8c56514c /source4/dsdb | |
parent | ac0a92b5b325a3be968d2f7384c6a4a119d0ec84 (diff) | |
download | samba-2763ede39937f9a0df2c6d0edf8532ce5e6f3e39.tar.gz samba-2763ede39937f9a0df2c6d0edf8532ce5e6f3e39.tar.bz2 samba-2763ede39937f9a0df2c6d0edf8532ce5e6f3e39.zip |
fix
Diffstat (limited to 'source4/dsdb')
-rw-r--r-- | source4/dsdb/repl/drepl_partitions.c | 2 | ||||
-rw-r--r-- | source4/dsdb/repl/drepl_periodic.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source4/dsdb/repl/drepl_partitions.c b/source4/dsdb/repl/drepl_partitions.c index e272747d80..76f261d4f8 100644 --- a/source4/dsdb/repl/drepl_partitions.c +++ b/source4/dsdb/repl/drepl_partitions.c @@ -346,7 +346,7 @@ static WERROR dreplsrv_refresh_partition(struct dreplsrv_service *s, NULL }; - DEBUG(2, ("dreplsrv_refresh_partition(%s)\n", + DEBUG(4, ("dreplsrv_refresh_partition(%s)\n", ldb_dn_get_linearized(p->dn))); ret = ldb_search(s->samdb, mem_ctx, &r, p->dn, LDB_SCOPE_BASE, attrs, diff --git a/source4/dsdb/repl/drepl_periodic.c b/source4/dsdb/repl/drepl_periodic.c index 9200606956..60f3581f5f 100644 --- a/source4/dsdb/repl/drepl_periodic.c +++ b/source4/dsdb/repl/drepl_periodic.c @@ -81,7 +81,7 @@ WERROR dreplsrv_periodic_schedule(struct dreplsrv_service *service, uint32_t nex W_ERROR_HAVE_NO_MEMORY(new_te); tmp_mem = talloc_new(service); - DEBUG(2,("dreplsrv_periodic_schedule(%u) %sscheduled for: %s\n", + DEBUG(4,("dreplsrv_periodic_schedule(%u) %sscheduled for: %s\n", next_interval, (service->periodic.te?"re":""), nt_time_string(tmp_mem, timeval_to_nttime(&next_time)))); @@ -97,7 +97,7 @@ static void dreplsrv_periodic_run(struct dreplsrv_service *service) { TALLOC_CTX *mem_ctx; - DEBUG(2,("dreplsrv_periodic_run(): schedule pull replication\n")); + DEBUG(4,("dreplsrv_periodic_run(): schedule pull replication\n")); /* * KCC or some administrative tool @@ -110,7 +110,7 @@ static void dreplsrv_periodic_run(struct dreplsrv_service *service) dreplsrv_schedule_pull_replication(service, mem_ctx); talloc_free(mem_ctx); - DEBUG(2,("dreplsrv_periodic_run(): run pending_ops memory=%u\n", + DEBUG(4,("dreplsrv_periodic_run(): run pending_ops memory=%u\n", (unsigned)talloc_total_blocks(service))); dreplsrv_ridalloc_check_rid_pool(service); |