We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 461d1ce commit bcbe0a2Copy full SHA for bcbe0a2
src/lib.rs
@@ -125,17 +125,17 @@ pub fn global_allocator() -> &'static GlobalAllocator {
125
}
126
127
pub fn global_init(start_vaddr: usize, size: usize) {
128
- info!(
129
- "Initializing global allocator at: [{:#x}, {:#x})",
+ debug!(
+ "initialize global allocator at: [{:#x}, {:#x})",
130
start_vaddr,
131
start_vaddr + size
132
);
133
GLOBAL_ALLOCATOR.init(start_vaddr, size);
134
135
136
pub fn global_add_memory(start_vaddr: usize, size: usize) -> AllocResult {
137
138
- "Add a memory region to global allocator: [{:#x}, {:#x})",
+ "add a memory region to global allocator: [{:#x}, {:#x})",
139
140
141
0 commit comments