Skip to content

Commit 67b66b2

Browse files
committed
removed debug log
1 parent 07f68ca commit 67b66b2

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [0.8.1] - 2024-02-17
4+
5+
### Fix 🐛
6+
7+
- Removed debug log
8+
39
## [0.8.0] - 2024-02-17
410

511
### Feature 🚀

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "leptos-struct-table"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
edition = "2021"
55
authors = ["Marc-Stefan Cassola"]
66
categories = ["gui", "web-programming"]

src/data_provider.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ where
116116
debug_assert_eq!(start % D::PAGE_ROW_COUNT, 0);
117117
debug_assert_eq!(end - start, D::PAGE_ROW_COUNT);
118118

119-
leptos::logging::log!("get_rows: {}..{}", start, end);
120119
self.get_page(start / D::PAGE_ROW_COUNT).await.map(|rows| {
121120
let len = rows.len();
122121
(rows, start..start + len)

0 commit comments

Comments
 (0)