]> git.proxmox.com Git - ceph.git/blob - ceph/src/rbd_replay/rbd_replay_debug.hpp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / rbd_replay / rbd_replay_debug.hpp
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3 /*
4 * Ceph - scalable distributed file system
5 *
6 * Copyright (C) 2014 Adam Crume <adamcrume@gmail.com>
7 *
8 * This is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License version 2.1, as published by the Free Software
11 * Foundation. See file COPYING.
12 *
13 */
14
15 #ifndef _INCLUDED_RBD_REPLAY_DEBUG_H
16 #define _INCLUDED_RBD_REPLAY_DEBUG_H
17
18 #include "common/debug.h"
19 #include "include/ceph_assert.h"
20
21 namespace rbd_replay {
22
23 static const int ACTION_LEVEL = 11;
24 static const int DEPGRAPH_LEVEL = 12;
25 static const int SLEEP_LEVEL = 13;
26 static const int THREAD_LEVEL = 10;
27
28 }
29
30 #define dout_subsys ceph_subsys_rbd_replay
31 #undef dout_prefix
32 #define dout_prefix *_dout << "rbd_replay: "
33
34 #endif