Skip to content

Commit

Permalink
removed debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
maccesch committed Feb 17, 2024
1 parent 07f68ca commit 67b66b2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.8.1] - 2024-02-17

### Fix 🐛

- Removed debug log

## [0.8.0] - 2024-02-17

### Feature 🚀
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leptos-struct-table"
version = "0.8.0"
version = "0.8.1"
edition = "2021"
authors = ["Marc-Stefan Cassola"]
categories = ["gui", "web-programming"]
Expand Down
1 change: 0 additions & 1 deletion src/data_provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ where
debug_assert_eq!(start % D::PAGE_ROW_COUNT, 0);
debug_assert_eq!(end - start, D::PAGE_ROW_COUNT);

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

0 comments on commit 67b66b2

Please sign in to comment.